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
Might make sense to add a fast-fail mode, where the moment anything happens that makes the test fail, it is killed and reported as failure, not allowed to continue.
Why:
Often at work I find myself running the entire test suite just to get a list of what tests fail. Usually this is because of a new feature or big change. I mainly just want a count of failures, and will then run the tests one by 1 to figure out the issue and fix it. In this case having a failing test continue to stumble does not help, I do not need the extra debugging. In this case a fast-fail would save me a lot of time.
Maybe --fast-fail?
This should probably wait for the 'overlord' branch to be completed and merged, the implementation would be significantly simpler.
The text was updated successfully, but these errors were encountered:
If you add that to every test yes, but then it is always on. I am talking a global switch for it. I guess you could just pass yath the option to import DieOnFail for every test, BailOnFail is not what we want here cause a bail kills the whole suite, I just want to kill the test that is already known to be failing.
Might make sense to add a fast-fail mode, where the moment anything happens that makes the test fail, it is killed and reported as failure, not allowed to continue.
Why:
Often at work I find myself running the entire test suite just to get a list of what tests fail. Usually this is because of a new feature or big change. I mainly just want a count of failures, and will then run the tests one by 1 to figure out the issue and fix it. In this case having a failing test continue to stumble does not help, I do not need the extra debugging. In this case a fast-fail would save me a lot of time.
Maybe --fast-fail?
This should probably wait for the 'overlord' branch to be completed and merged, the implementation would be significantly simpler.
The text was updated successfully, but these errors were encountered: