ci: Setup abci in dependency step

This commit is contained in:
Alexander Simmerl
2018-06-22 19:29:44 +02:00
parent a605b66c5a
commit 3ff3a8ec37
2 changed files with 4 additions and 37 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ set -e
echo "mode: atomic" > coverage.txt
for pkg in ${PKGS[@]}; do
go test -v -timeout 30m -race -coverprofile=profile.out -covermode=atomic "$pkg"
go test -timeout 5m -race -coverprofile=profile.out -covermode=atomic "$pkg"
if [ -f profile.out ]; then
tail -n +2 profile.out >> coverage.txt;
rm profile.out