We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c87e7a commit 4bc3f72Copy full SHA for 4bc3f72
phpunit-failed-runner
@@ -26,4 +26,13 @@ else
26
"$runner" --log-junit junit.xml
27
fi
28
29
+if test -f "$logfile"; then
30
+ count_failed_tests="$(xmlstarlet tr ./vendor/chrisdicarlo/phpunit-failed-runner/prune.xsl junit.xml | xmlstarlet tr --omit-decl ./vendor/chrisdicarlo/phpunit-failed-runner/count-failed.xsl)"
31
+
32
+ if [ "$count_failed_tests" = "0" ]; then
33
+ echo -e "No failed tests! Great job! \U1F44D \U1F389"
34
+ rm "$logfile"
35
+ fi
36
+fi
37
38
exit 0
0 commit comments