[Feature] It would be nice to have a number of ignored tests
See original GitHub issueI thought it would be good to have some number in the report telling how many tests is ignored.
Actual behavior
Now TestNG has in the output report something like:
<testng-results skipped="1" failed="2" total="6" passed="3">
Desired behavior
I thought that some parameter like “ignored” would be useful (similarly as JUnit has).
<testng-results skipped="1" failed="2" total="6" passed="3" ignored="...">
Then, issue #1211 would be probably easily fixable.
What do you think? Regards
Issue Analytics
- State:
- Created 7 years ago
- Comments:7
Top Results From Across the Web
Allow to mark tests as ignored/muted (not contributing to the ...
My co-workers get e-mails on failure and success, so if I did not get a chance to mute the failed test cases, next...
Read more >How to avoid ignored tests being generated as in SpecFlow ...
1 Answer 1 ... You cannot get the test generator to ignore those tests. SpecFlow tags become [Test category("ignore")] attributes above the test ......
Read more >Why changes in ignored tests might affect CI build? How to ...
I am working on an Unity project in which the CI build failed due to some addition / removal of code in the...
Read more >Jest ignore or exclude file/function/statement from test coverage
Take your JavaScript testing to the next level by learning the ins and ... Why would I want to exclude/ignore files or lines...
Read more >Re: VI Analyzer Feature Idea - Ignoring Individual Results
If we went with the UID approach, then we would still need to have backwards compatibility for older tests written with the RD...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I would like to say +1 for this issue.
We have about 26k tests.
The tests were skipped or ignored? It is important to know because it is hard to find out the reason about 120 tests that were skipped. Having this, we can “don’t worry about ignored” and focus on the skipped tests.
A skipped test, it is a test when @Before** failed. So we need to look into each one test that were skipped.
I would like to say that I am available to help to test this issue before the release.
Cheers
My idea was to enforce that this issue is important 😃