Skip to content

Instantly share code, notes, and snippets.

@BDQ
Created October 26, 2012 08:40
Show Gist options
  • Select an option

  • Save BDQ/3957671 to your computer and use it in GitHub Desktop.

Select an option

Save BDQ/3957671 to your computer and use it in GitHub Desktop.
Re-run specs until they fail (handy for random / inconsistent failures).
RET=0;until [[ $RET = 1 ]];do bundle exec rspec; RET="$?";sleep 1;done
@BDQ
Copy link
Author

BDQ commented Oct 26, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment