Skip to content
This repository has been archived by the owner on Sep 30, 2020. It is now read-only.

Commit

Permalink
Increase build timeout to 55 minutes
Browse files Browse the repository at this point in the history
This branch's test-with-cover seems to take a long time
so this commit increases the amount of time granted to it.
  • Loading branch information
kfr2 committed Aug 17, 2020
1 parent 5bd8214 commit 745d25a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go:
- 1.13.x

script:
- travis_wait 50 make test-with-cover
- travis_wait 60 make test-with-cover

after_success:
- bash <(curl -s https://codecov.io/bash)
Expand Down
2 changes: 1 addition & 1 deletion make/test
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ default() {
with-cover() {
test -z "$(find . -path ./vendor -prune -type f -o -name '*.go' -exec gofmt -d {} + | tee /dev/stderr)"
for d in $(go list ./... | grep -v '/vendor/' | grep -v '/hack'); do
go test -timeout 45m -json -v --race -coverprofile=profile.out -covermode=atomic $d | tparse
go test -timeout 55m -json -v --race -coverprofile=profile.out -covermode=atomic $d | tparse
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
Expand Down

0 comments on commit 745d25a

Please sign in to comment.