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

Commit 745d25a

Browse files
committed
Increase build timeout to 55 minutes
This branch's test-with-cover seems to take a long time so this commit increases the amount of time granted to it.
1 parent 5bd8214 commit 745d25a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go:
44
- 1.13.x
55

66
script:
7-
- travis_wait 50 make test-with-cover
7+
- travis_wait 60 make test-with-cover
88

99
after_success:
1010
- bash <(curl -s https://codecov.io/bash)

make/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ default() {
1919
with-cover() {
2020
test -z "$(find . -path ./vendor -prune -type f -o -name '*.go' -exec gofmt -d {} + | tee /dev/stderr)"
2121
for d in $(go list ./... | grep -v '/vendor/' | grep -v '/hack'); do
22-
go test -timeout 45m -json -v --race -coverprofile=profile.out -covermode=atomic $d | tparse
22+
go test -timeout 55m -json -v --race -coverprofile=profile.out -covermode=atomic $d | tparse
2323
if [ -f profile.out ]; then
2424
cat profile.out >> coverage.txt
2525
rm profile.out

0 commit comments

Comments
 (0)