Increase test timeout from default 10m to 20m since some tests are slow as molasses in January

- Example build being killed by Go's test binary: https://travis-ci.org/golang-migrate/migrate/jobs/331027558
This commit is contained in:
Dale Hui 2018-01-19 15:42:02 -08:00
parent 12cc536541
commit 59f3f6d6c2
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ test-short:
test:
@-rm -r .coverage
@mkdir .coverage
make test-with-flags TEST_FLAGS='-v -race -covermode atomic -coverprofile .coverage/_$$(RAND).txt -bench=. -benchmem'
make test-with-flags TEST_FLAGS='-v -race -covermode atomic -coverprofile .coverage/_$$(RAND).txt -bench=. -benchmem -timeout 20m'
@echo 'mode: atomic' > .coverage/combined.txt
@cat .coverage/*.txt | grep -v 'mode: atomic' >> .coverage/combined.txt