Basically what I need is to stop the UITests when the first one fails. I'm using Jenkins with Fastlane Scan.
I have the option to continue after failure disabled (but it only prevents this specific test to continue):
override func setUp() {
...
continueAfterFailure = false
...
}
My scan file contains the option to "fail_build" true.
But it keeps running even when the first on fails.
Thanks in advance.