You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Azure Pipelines, it makes much more sense to have test results with all passed tests along with the failed ones. We want to publish results even when they pass. And we want to know what percentage of tests failed. Right now if no tests failed, we get an empty xml file:
I'd also like to request warnings added to JUnit output.
This is possible by defining the fail-severity option of the command line. It seems it is set to error when the format is defined. Setting it to warn will do the work for your case. In your case the command line will look like this:
I'd also like to request warnings added to JUnit output.
This is possible by defining the fail-severity option of the command line. It seems it is set to error when the format is defined. Setting it to warn will do the work for your case. In your case the command line will look like this:
In Azure Pipelines, it makes much more sense to have test results with all passed tests along with the failed ones. We want to publish results even when they pass. And we want to know what percentage of tests failed. Right now if no tests failed, we get an empty xml file:
And when they fail, it includes only the failed ones, so the failure rate is always either 100% or no results to publish.
The text was updated successfully, but these errors were encountered: