mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
test: crank circle timeouts
This commit is contained in:
parent
de6bba4609
commit
81f91aebc2
@ -30,7 +30,7 @@ dependencies:
|
|||||||
test:
|
test:
|
||||||
override:
|
override:
|
||||||
- "cd $REPO && make test_integrations":
|
- "cd $REPO && make test_integrations":
|
||||||
timeout: 1200
|
timeout: 1800
|
||||||
post:
|
post:
|
||||||
- "cd $REPO && bash <(curl -s https://codecov.io/bash)"
|
- "cd $REPO && bash <(curl -s https://codecov.io/bash)"
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ PKGS=$(go list github.com/tendermint/tendermint/... | grep -v /vendor/)
|
|||||||
set -e
|
set -e
|
||||||
echo "mode: atomic" > coverage.txt
|
echo "mode: atomic" > coverage.txt
|
||||||
for pkg in ${PKGS[@]}; do
|
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
|
if [ -f profile.out ]; then
|
||||||
tail -n +2 profile.out >> coverage.txt;
|
tail -n +2 profile.out >> coverage.txt;
|
||||||
rm profile.out
|
rm profile.out
|
||||||
|
Loading…
x
Reference in New Issue
Block a user