-
Notifications
You must be signed in to change notification settings - Fork 403
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
The final report contains "Skipped" steps for tests, which were retested #1053
Comments
Attach JSON file. |
I mentioned steps (Given, And, Then etc). The JSON file is huge and contains some business data, do you really need it? |
I use both options
Is it a error to use them both? |
|
Honestly I have no idea how to answer for that question as most of those features were developed by guys who need them. I don't :) |
Hello!
E2E-Cucumber false target target *.json true true true trueI have two passes of my tests: first - multithread (results into multi.json) and second - singlethread with retesting of failed scenarios (retest.json). During my second pass I generate SkipException for tests, which were passed at first pass.
After finishing of both passes, I perform report generation:
Finally my report contains identical number of executed steps in the columns Skipped and Passed (see screenshot).
My expectation:
Report must display execution time of every scenario and number of performed steps based on the following:
So, finally:
| Pass 1 | Pass 2 | Result | Use data of |
| Success | Skipped | Success | Pass 1 |
| Failed | Success | Success | Pass 2 |
| Skipped | Success | Success | Pass 2 |
| Failed | Failed | Failed | Pass 2 |
I don't need to see number of executed steps, performed at previous attempt, in the tests, which was retested. I need to see only number of retest steps.
Version of the plugin maven.cucumber.reporting: 5.7.0
The text was updated successfully, but these errors were encountered: