-
-
Notifications
You must be signed in to change notification settings - Fork 721
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
There is no way to exclude Skipped test cases in allure report #1037
Comments
Any update on this? |
Also looking for this functionality. Will be great to see skipped test as amount but without final calculation |
python users want this feat too! |
any update so far? Also struggling in this issue. |
duplicate of allure-framework/allure-java#412 fixed 2.25.0 Please, notice, that the browser cache needs to be cleared to see the change |
Assuming I have 1 pass, 1 fail, 1 skip. In my case I prefer the previous behavior. |
I am using allure 2.10.0 with Java & TestNG. I have around 1000 test cases of which some gets skipped if there mismatch in some parameters. Because of this my pass percentage gets affected as it includes SKIPPED test cases in the count.
I need a way to not include SKIPPED test cases in the count.
Current Behavior -
Total - 3 (Pass + Failed + Skipped)
Pass - 1, Failed - 1, Skipped - 1
Pass Percentage - 33.33%
Expected behavior -
Total - 2 (Include only Pass and Fail)
Pass Percentage - 50%
Please let me know if there is already a way to implement it
The text was updated successfully, but these errors were encountered: