Skip to content
Snippets Groups Projects
Commit 34b25dcc authored by Richard van der Hoff's avatar Richard van der Hoff Committed by Amber Brown
Browse files

Silence travis-ci build warnings by removing non-functional python3.6 (#4377)

* Remove non-functional python3.6 in travis env

* changelog
parent a35c66a0
No related branches found
No related tags found
No related merge requests found
...@@ -71,6 +71,13 @@ matrix: ...@@ -71,6 +71,13 @@ matrix:
install: install:
- pip install tox - pip install tox
# if we don't have python3.6 in this environment, travis unhelpfully gives us
# a `python3.6` on our path which does nothing but spit out a warning. Tox
# tries to run it (even if we're not running a py36 env), so the build logs
# then have warnings which look like errors. To reduce the noise, remove the
# non-functional python3.6.
- ( ! command -v python3.6 || python3.6 --version ) &>/dev/null || rm -f $(command -v python3.6)
script: script:
- tox -e $TOX_ENV - tox -e $TOX_ENV
Silence travis-ci build warnings by removing non-functional python3.6
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment