Skip to content

Commit

Permalink
Support allow empty junit results (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
c42-arthur authored Aug 11, 2023
1 parent fe80138 commit c68769c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ data class JUnit(
val allowEmptyResults: Boolean = false
) : DeclarativeStep, SingletonStep {
override fun toGroovy(writer: GroovyWriter) {
writer.writeln("junit ${testResults.toGroovy()}," +
writer.writeln("junit testResults: ${testResults.toGroovy()}," +
" allowEmptyResults: $allowEmptyResults")
}
}
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.20.2
0.20.3

0 comments on commit c68769c

Please sign in to comment.