diff --git a/History.md b/History.md index de853ed7d0..e659d22fbf 100644 --- a/History.md +++ b/History.md @@ -6,6 +6,7 @@ ### Bugfixes +* Use HTTPS instead of Git as transport protocol ([#960](https://github.com/cucumber/cucumber-ruby/pull/960)) * Make random order stable and platform independent ([#974](https://github.com/cucumber/cucumber-ruby/pull/974), closes [#971](https://github.com/cucumber/cucumber-ruby/issues/971)) * Run scenarios in fully random order ([#970](https://github.com/cucumber/cucumber-ruby/pull/970) @threedaymonk) * Adding Test Step in AfterStep hook. ([#931](https://github.com/cucumber/cucumber-ruby/pull/931) @t-morgan) diff --git a/features/docs/cli/retry_failing_tests.feature b/features/docs/cli/retry_failing_tests.feature index 1df3a1ece4..e68467c807 100644 --- a/features/docs/cli/retry_failing_tests.feature +++ b/features/docs/cli/retry_failing_tests.feature @@ -1,22 +1,21 @@ -@wip Feature: Retry failing tests Retry gives you a way to get through flaky tests that usually pass after a few runs. This gives a development team a way forward other than disabling a valuable test. - + - Specify max retry count in option - Output information to the screen - Output retry information in test report - + Questions: use a tag for flaky tests? Global option to retry any test that fails? - + Background: Given a scenario "Flakey" that fails once, then passes And a scenario "Shakey" that fails twice, then passes And a scenario "Solid" that passes And a scenario "No Dice" that fails - + Scenario: When I run `cucumber -q --retry 1` Then it should fail with: @@ -29,4 +28,4 @@ Feature: Retry failing tests Then it should pass with: """ 4 scenarios (3 passed, 1 failed) - """ \ No newline at end of file + """