Even if you ignore it, you are looking for --stop-on-failure .
Because when you see where the error is, you can write a correction. Then you need to run the tests again.
If you are just logging into the system, you still cannot run the tests again, because after 10 seconds the first error will be visible and corrected within one more minute. However, you still need to wait for ca. 38 minutes until you can complete the tests.
Another problem is that your tests are too long. You need to get them faster. The fact that you use --process-isolation , after all, a sign that you have integration tests. Separate them from your unit tests, they often take more time.
Then you can run integration tests in isolation and continuously (in a loop, always), and you run unit tests while saving your files.
hakre source share