From 8f22c5917fbc923d96569f4d40fb8d7520902789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 1 Nov 2020 13:57:56 +0200 Subject: [PATCH] Run tox verbosely in Travis CI (#42706) Avoids hitting a no output timeout in sometimes time consuming dep installs. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 07bed987a83..218bb1132a3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,4 +39,4 @@ cache: - $HOME/.cache/pre-commit install: pip install -U tox tox-travis language: python -script: ${TRAVIS_WAIT:+travis_wait $TRAVIS_WAIT} tox --develop ${TOX_ARGS-} +script: ${TRAVIS_WAIT:+travis_wait $TRAVIS_WAIT} tox -vv --develop ${TOX_ARGS-}