test: circle artifacts

This commit is contained in:
Ethan Buchman
2016-12-19 15:42:39 -05:00
parent faf23aa0d4
commit 6bc3b8dc6d
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ PKGS=$(go list github.com/tendermint/tendermint/... | grep -v /vendor/)
set -e
echo "mode: atomic" > coverage.txt
for pkg in ${PKGS[@]}; do
go test -timeout 20m -race -coverprofile=profile.out -covermode=atomic $pkg
go test -timeout 30m -race -coverprofile=profile.out -covermode=atomic $pkg
if [ -f profile.out ]; then
tail -n +2 profile.out >> coverage.txt;
rm profile.out