Skip to content

Commit

Permalink
Fix bin/eftest when no --junit flag is passed (#87)
Browse files Browse the repository at this point in the history
Fix bin/eftest when no --junit flag is passed
  • Loading branch information
SevereOverfl0w authored Jun 20, 2019
2 parents 20f4178 + 76a72bd commit 900cc5a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bin/.eftest.clj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
eftest.report.progress/report
(filter
identity
[(report-to-file
(requiring-resolve 'eftest.report.junit/report)
junit-path)]))})]
[(when junit?
(report-to-file
(requiring-resolve 'eftest.report.junit/report)
junit-path))]))})]
(System/exit (+ (:error summary) (:fail summary))))

0 comments on commit 900cc5a

Please sign in to comment.