mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
only run Ginkgo focus detection in staged files in pre-commit hook
If a change is not staged (and therefore won't be committed), we don't care.
This commit is contained in:
parent
522cad0ba8
commit
64f015fab4
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
errored=false
|
||||
for f in $(git diff --cached --name-only); do
|
||||
if [[ $f != *_test.go ]]; then continue; fi
|
||||
output=$(grep -n -e "FIt(" -e "FContext(" -e "FDescribe(" "$f")
|
||||
output=$(git show :"$f" | grep -n -e "FIt(" -e "FContext(" -e "FDescribe(")
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "$f contains a focussed test:"
|
||||
echo "$output"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue