Make test timeout on travis huge (#22344)

* Make test timeout on travis huge

Specifically, 10 minutes, which is the duration it can go before travis itself will time out (if there is not output). This is needed because we set `workerCount=3` to improve our runtime, however travis doesn't _always_ have that much compute available; so when travis is resource-starved and we're running on one real thread, two test runners sit idle (due to resource starvation) and get timed-out by the watchdog process during test running. This timeout should be long enough that such that timeouts no longer occur on travis.

* Update .travis.yml
This commit is contained in:
Wesley Wigham 2018-03-05 14:34:46 -08:00 committed by GitHub
parent 16bf02991d
commit f41555ce89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ node_js:
sudo: false
env:
- workerCount=3
- workerCount=3 timeout=600000
matrix:
fast_finish: true