Browse Source
ci: bump the timeout for test_coverage (#4864)
## Description
bumping the timeout on test_coverage as the amount of tests have increased causing quite a few timeouts.
Closes: #XXX
pull/4871/head
Marko
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
.circleci/config.yml
|
|
@ -100,7 +100,7 @@ jobs: |
|
|
|
mkdir -p /tmp/logs /tmp/workspace/profiles |
|
|
|
for pkg in $(go list github.com/tendermint/tendermint/... | circleci tests split --split-by=timings); do |
|
|
|
id=$(basename "$pkg") |
|
|
|
go test -timeout 5m -mod=readonly -race -coverprofile=/tmp/workspace/profiles/$id.out -covermode=atomic "$pkg" | tee "/tmp/logs/$id-$RANDOM.log" |
|
|
|
go test -timeout 7m -mod=readonly -race -coverprofile=/tmp/workspace/profiles/$id.out -covermode=atomic "$pkg" | tee "/tmp/logs/$id-$RANDOM.log" |
|
|
|
done |
|
|
|
- persist_to_workspace: |
|
|
|
root: /tmp/workspace |
|
|
|