From 81f91aebc23031c75916459b0037011d777796a1 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Sat, 17 Dec 2016 15:16:58 -0500 Subject: [PATCH] test: crank circle timeouts --- circle.yml | 2 +- test/test_cover.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/circle.yml b/circle.yml index 671ea14ca..2b54c66bb 100644 --- a/circle.yml +++ b/circle.yml @@ -30,7 +30,7 @@ dependencies: test: override: - "cd $REPO && make test_integrations": - timeout: 1200 + timeout: 1800 post: - "cd $REPO && bash <(curl -s https://codecov.io/bash)" diff --git a/test/test_cover.sh b/test/test_cover.sh index 52d45dc53..5b97b9d90 100644 --- a/test/test_cover.sh +++ b/test/test_cover.sh @@ -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 -race -coverprofile=profile.out -covermode=atomic $pkg + go test -timeout 20m -race -coverprofile=profile.out -covermode=atomic $pkg if [ -f profile.out ]; then tail -n +2 profile.out >> coverage.txt; rm profile.out