Created
March 9, 2016 07:18
-
-
Save jegtnes/c456ba31148b17a3cec6 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
mocha_skip_found=`git grep -e ".only" --or -e ".skip" HEAD` | |
if [ "$mocha_skip_found" ] | |
then | |
commit=`git log --pretty=format:'%Cred%h%Creset %s' -G "(.only|.skip)" | head -n1` | |
echo "Found Mocha test suite skip. This change was last introduced in:" | |
echo $commit | |
echo "Not pushing. (override with the --no-verify flag)" | |
exit 1 | |
fi | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment