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
I want to run 500 tests in parallel. Each test does a lot of operations and I want to abort the individual test if something fails. But it seems to be impossible.
I know there is the --fail-fast options but then all the remaining tests will be aborted aswell. I just want the individual test to abort because it's unnecessary to execute all other commands when an assertion fails.
Description
I want to run 500 tests in parallel. Each test does a lot of operations and I want to abort the individual test if something fails. But it seems to be impossible.
I know there is the --fail-fast options but then all the remaining tests will be aborted aswell. I just want the individual test to abort because it's unnecessary to execute all other commands when an assertion fails.
Test Source
Expected log:
123
Actual log:
123
321
I don't understand what's the purpose of keeping the test running after an assertion fails.
The text was updated successfully, but these errors were encountered: