test: crank circle timeouts

This commit is contained in:
Ethan Buchman 2016-12-17 15:16:58 -05:00
parent de6bba4609
commit 81f91aebc2
2 changed files with 2 additions and 2 deletions

View File

@ -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)"

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 -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