Giter VIP home page Giter VIP logo

rspec-retry-flaky's Introduction

RspecRetryFlaky

Gem Version

Retry rspec if failed some tests.

You can set how many retry test and how long wait retrying test within RSpec.configure.

Build Status

Build Status

Installation

Add this line to your application's Gemfile:

gem 'rspec-retry-flaky'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rspec-retry-flaky

require in rspec_helper.rb

RSpec.configure do |c|
  c.verbose_retry_flaky_example = true # turn on retry flaky example verbose
  c.flaky_retry_count = 3 # retry count when failed the example
  c.flaky_sleep_interval = 10 # sleep interval between retry the example
end

This feature use RSpec.configure.around(:example) { |example| something } hook.

Usage

Turn off flaky retry

it "example scenario", :off_flaky_test do
  # test case
end

It can use in Turnip.

@off_flaky_test
Feature: example
  Scenario: sample scenario
    When example step
    Then example expected

progress message when the example retry

Retry flaky 1 times: ./spec/example.rb:10
Retry flaky 2 times: ./spec/example.rb:10
Retry flaky 3 times: ./spec/example.rb:10

Configurations

  • verbose_retry_flaky_example(default: false)
  • flaky_retry_count(default: 1)
  • flaky_sleep_interval(default: 0)

Contributing

  1. Fork it ( https://github.com/[my-github-username]/retry_flaky_example/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

rspec-retry-flaky's People

Contributors

empeje avatar kazucocoa avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

drewpterry

rspec-retry-flaky's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.