Created
March 3, 2011 20:16
-
-
Save kbaribeau/853446 to your computer and use it in GitHub Desktop.
Run all failing cucumber scenarios from a hudson log
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
curl http://url-to-hudson-log | grep -A 5 'Failing Scenarios' | grep ^cucumber | awk '{print $2}' | sed -e 's/^.*\(\/features.*\)$/\1/' | sed -e 's/^.//' | xargs script/cucumber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment