paraunit icon indicating copy to clipboard operation
paraunit copied to clipboard

Output improvements

Open salvatorecordiano opened this issue 6 years ago • 1 comments

Is it possible to show the failed test methods immediately instead of wait the end of the whole test suite execution?

salvatorecordiano avatar Aug 04 '17 12:08 salvatorecordiano

This is a great idea, and a good alternative to #58 when it's not applicable, like in a CI build: the build there can be very long, but seeing an F at the start and having to wait until the end to know what's wrong is frustrating.

I was thinking about doing something like:

paraunit run --print-failures-early

[...]

................................................................................
.....................E.....
ERRORS:
1) Class\Name\Of\Test::testMethod(): error message

................................................................................
................................................................................

I would use the same output style of the failures recap at the end, break the errors printing, and the recover from where it was left.

Jean85 avatar Aug 04 '17 15:08 Jean85