-
-
Save BDQ/3957671 to your computer and use it in GitHub Desktop.
Re-run specs until they fail (handy for random / inconsistent failures).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RET=0;until [[ $RET = 1 ]];do bundle exec rspec; RET="$?";sleep 1;done |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Adapted from: http://serverfault.com/a/316122