From eb1b0a85610574dfa25646f2e00f69b2cc57c406 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Sun, 8 Dec 2019 18:36:42 -0500 Subject: [PATCH] Add verbosity to tox command to pass on as `pip -vvv` --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a6d1a713..e627f185 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,9 @@ matrix: - sudo apt-get update - sudo apt-get install -y build-essential python3-dev libgtk-3-dev libjpeg-dev libtiff-dev script: - - tox + # Pass -vvv to pip through tox because wxPython can take ~20min to build and + # Travis CI thinks that the build has stalled unless build progress is output. + - tox -vvvvv - python: 3.7 name: "Test Python 3.7" env: TOXENV=py37