Skip to content

Instantly share code, notes, and snippets.

@ispyropoulos
Created December 18, 2019 17:52
Show Gist options
  • Save ispyropoulos/671b32f777db592d66d17cc0b2057dcc to your computer and use it in GitHub Desktop.
Save ispyropoulos/671b32f777db592d66d17cc0b2057dcc to your computer and use it in GitHub Desktop.
Run RSpec suite multiple times, but stop if there's a failure.
for i in `seq 50` ; do rspec spec ; [[ ! $? = 0 ]] && break ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment