We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bcb1da6 + 3060ddb commit 64137edCopy full SHA for 64137ed
src/lein_junit/core.clj
@@ -117,7 +117,6 @@
117
(javac project)
118
(let [junit-task (apply extract-task project selectors)]
119
(.execute junit-task)
120
- (if (or (.getProperty lancet/ant-project "lein-junit.errors")
121
- (.getProperty lancet/ant-project "lein-junit.failures"))
122
- (main/abort "JUnit tests failed.")
123
- (main/exit 0))))
+ (when (or (.getProperty lancet/ant-project "lein-junit.errors")
+ (.getProperty lancet/ant-project "lein-junit.failures"))
+ (main/abort "JUnit tests failed."))))
0 commit comments