Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #172 from justinsb/skip_etcd_manager_test_for_now
Browse files Browse the repository at this point in the history
Temporarily skip etcd-manager gotest
  • Loading branch information
k8s-ci-robot authored Sep 2, 2020
2 parents 1446b36 + 72bb7da commit faa3b92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hack/verify-gotest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ cd_root_path
# run go test
export GO111MODULE=on
ERROR=0
DIRS=$(git ls-files | grep -v "vendor\/" | grep ".go" | xargs dirname | grep -v "\." | cut -d '/' -f 1 | uniq)
# To ease merging repos, we initially exclude etcd-manager, then will fix it here
DIRS=$(git ls-files | grep -v "vendor\/" | grep -v "etcd-manager\/" | grep ".go" | xargs dirname | grep -v "\." | cut -d '/' -f 1 | uniq)
while read -r dir; do
go test ./"$dir"/... || ERROR=1
done <<< "$DIRS"
Expand Down

0 comments on commit faa3b92

Please sign in to comment.