From 23ac551e880bc45522e08648fd2f00fa0c74eb7b Mon Sep 17 00:00:00 2001 From: Martin Geno Date: Mon, 29 May 2017 22:06:59 +0200 Subject: [PATCH] [BUGFIX] test once per time --- .test-coverage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.test-coverage b/.test-coverage index 8bb6ae1..045ec05 100755 --- a/.test-coverage +++ b/.test-coverage @@ -9,7 +9,7 @@ FAIL=0 for dir in $(find . -maxdepth 10 -not -path './.git*' -not -path '*/_*' -type d); do if ls $dir/*.go &> /dev/null; then - go test -v -covermode=count -coverprofile=profile.tmp $dir || FAIL=$? + go test -p 1 -v -covermode=count -coverprofile=profile.tmp $dir || FAIL=$? if [ -f profile.tmp ] then tail -n +2 < profile.tmp >> profile.cov