Hello Robin
Could you help me with this one please? I'm trying to control the overall test results, many parallel steps run similar tests and will all publish JUnit report eventually. But the "Step Failure Condition" only has two options:
current.errors + current.failures > 0
and
false
It looks like script format but I'm not sure if it accepts and parses more complicated Groovy scripts.
What input does this setting expect? For example, using Groovy, how to recreate the "false" input, just return "false"?
And what about the other condition? Return "current.errors + current.failures > 0" which might be true?
Thank you