wasd
wasd

Reputation: 1572

How to make jenkins trigger build failure if tests were failed

I have few tests written in Python with unittest module. Tests working properly, but in Jenkins even if test fails, build with this test is still marked as successive. Is there way to check output for python test and return needed result?

Upvotes: 1

Views: 1897

Answers (1)

avijuran
avijuran

Reputation: 26

When you publish the unit test results in the post build section (If you aren't already, you should), you set the thresholds for failure. If you don't set thresholds, the build will always fail unless running them returns a non zero exit code. To always fail the build on any unit test failure, set all failure thresholds to zero. Note that you can also set thresholds for skipped tests as well.

Upvotes: 1

Related Questions