Build status value
One answer
Hi Karthik. The build status supports only OK, INFO, WARNING and ERROR values. However, it's possible to have error/failure test results not impact the overall build result when publishing them. e.g. the junitLogPublisher Ant task has a mayFailPattern= attribute, which can be set to the name of a test suite, or substring thereof. If matched, the tests are published as normal but any test error or failure will not impact the overall build result's status.
We use this in our own self-hosting, separating problematic / intermittently failing tests into "MayFail" test suites.
Comments
1 vote