summaryrefslogtreecommitdiffstats
path: root/test.sh
diff options
context:
space:
mode:
authorDawid Dziurla <dawidd0811@gmail.com>2018-09-01 17:22:23 +0200
committerDawid Dziurla <dawidd0811@gmail.com>2018-09-01 17:22:23 +0200
commit0355fc3008cc57e20c082432fcd80afcc3e5ecc4 (patch)
treece92d99e1f373a3d11356f31a1e38e8f4dba5527 /test.sh
parentb65fa852f187c820901e67f77b1fb8ac8dbd4ea3 (diff)
don't run tests on scripts/ directory
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.sh b/test.sh
index a92243cf7..a1ab4301f 100755
--- a/test.sh
+++ b/test.sh
@@ -3,7 +3,7 @@
set -e
echo "" > coverage.txt
-for d in $( find ./* -maxdepth 10 ! -path "./vendor*" ! -path "./.git*" -type d); do
+for d in $( find ./* -maxdepth 10 ! -path "./vendor*" ! -path "./.git*" ! -path "./scripts*" -type d); do
if ls $d/*.go &> /dev/null; then
go test -v -race -coverprofile=profile.out -covermode=atomic $d
if [ -f profile.out ]; then