Created
March 22, 2013 08:37
-
-
Save wojtekmach/5219800 to your computer and use it in GitHub Desktop.
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
| (set -e; | |
| git rev-list --reverse origin/master..master | | |
| while read rev; do | |
| echo "Checking out: $(git log --oneline -1 $rev)"; | |
| git checkout -q $rev; | |
| python runtests.py; | |
| done) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment