Skip to content

Commit 4bc3f72

Browse files
committed
Add check after run to clean up if no there are no failed tests
1 parent 2c87e7a commit 4bc3f72

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

phpunit-failed-runner

+9
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,13 @@ else
2626
"$runner" --log-junit junit.xml
2727
fi
2828

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+
2938
exit 0

0 commit comments

Comments
 (0)