Browse Source

test: crank circle timeouts

pull/330/head
Ethan Buchman 8 years ago
parent
commit
81f91aebc2
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      circle.yml
  2. +1
    -1
      test/test_cover.sh

+ 1
- 1
circle.yml 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)"


+ 1
- 1
test/test_cover.sh 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


Loading…
Cancel
Save