I\'m running a large suite of phpunit tests, and I\'d like see which test failed as soon as it failed, rather than waiting for all of the tests to complete then having it list o
Add the stopOnFailure="true"
attribute to your phpunit.xml
root element.
You can also use it in the CLI: phpunit --stop-on-failure
Info from manual and some others that are maybe useful for you:
More info at: PHPunit manual