Created
March 11, 2015 17:37
-
-
Save onpaws/5b244a8e488c19f6072c to your computer and use it in GitHub Desktop.
run a test suite over git revisions
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 master~3..master | while read rev; do git checkout $rev; python runtests.py; done) | |
# set -e causes shell to stop while loop on test error | |
# via Gary Bernhardt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment