From 57fbd38498aee82467fa2bc5565299bb810337a6 Mon Sep 17 00:00:00 2001 From: vyzo Date: Wed, 22 Apr 2020 15:34:35 +0300 Subject: [PATCH] add travis_wait to test job in an attempt to counter the frequent "no output received" problem --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 278d460..08e3b31 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ cache: script: - go build ./... - - go test -v -race -coverprofile=coverage.txt -covermode=atomic ./... + - travis_wait go test -v -race -coverprofile=coverage.txt -covermode=atomic ./... after_success: - bash <(curl -s https://codecov.io/bash)