Skip to content

Commit

Permalink
fix(ci/codegen): set streamLogsOnFailures to true
Browse files Browse the repository at this point in the history
  • Loading branch information
sruehl committed Dec 3, 2021
1 parent 42e0622 commit 5920d67
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions code-generation/language-c/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<configuration>
<skipInvocation>${skip-code-generation-tests}</skipInvocation>
<debug>true</debug>
<streamLogsOnFailures>true</streamLogsOnFailures>
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
<projectsDirectory>src/test/resources</projectsDirectory>
<cloneProjectsTo>${project.build.directory}/integration-tests</cloneProjectsTo>
Expand Down
1 change: 1 addition & 0 deletions code-generation/language-go/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<configuration>
<skipInvocation>${skip-code-generation-tests}</skipInvocation>
<debug>true</debug>
<streamLogsOnFailures>true</streamLogsOnFailures>
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
<projectsDirectory>src/test/resources</projectsDirectory>
<cloneProjectsTo>${project.build.directory}/integration-tests</cloneProjectsTo>
Expand Down
1 change: 1 addition & 0 deletions code-generation/language-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<configuration>
<skipInvocation>${skip-code-generation-tests}</skipInvocation>
<debug>true</debug>
<streamLogsOnFailures>true</streamLogsOnFailures>
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
<projectsDirectory>src/test/resources</projectsDirectory>
<cloneProjectsTo>${project.build.directory}/integration-tests</cloneProjectsTo>
Expand Down
4 changes: 2 additions & 2 deletions plc4go/internal/plc4go/spi/utils/dumpUtils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func TestBoxAnything(t *testing.T) {
anything: 1,
charWidth: 0,
},
want: asciiBox(`
want: asciiBox(`
╔═exampleInt═════════╗
║0x0000000000000001 1║
╚════════════════════╝
Expand All @@ -68,7 +68,7 @@ func TestBoxAnything(t *testing.T) {
anything: 123123123,
charWidth: 0,
},
want: asciiBox(`
want: asciiBox(`
╔═exampleInt═════════════════╗
║0x000000000756b5b3 123123123║
╚════════════════════════════╝
Expand Down

0 comments on commit 5920d67

Please sign in to comment.