-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add test count statistics at end of run #18
Comments
@clach04, not sure if the statistics should be counted for each test class or for each module (application) or for all applications. So, what are your expectations? |
I'll copy/paste a couple of python unittest (stdout) outputs below as those are easy for me to lay my hands on right now, using basic unittest and not anything fancy with additional options. Stats on each test application / class would be interesting but the common statistic that is usually reported is test methods. Output below is from a single file (Python) unittest with 2 test classes:
The "." signify test ran successfully Same file (2x test classes) with a hack to make one test fail:
And same but with verbose flag:
To explain what My instinct is to recommend we append something line verbose output format to a text file which can then be summarized (as we are already relying on bash, |
CC'ing @ravendaemon into conversation. |
At end of run include counts for:
The text was updated successfully, but these errors were encountered: