Skip to content

Commit

Permalink
Add python3.6 build config to .travis.yml
Browse files Browse the repository at this point in the history
We only really need one build environment (python3.6); the rest are
redundant, since Travis CI seems to be able to test all python versions
from 2.7 through 3.6 with this one build environment.
  • Loading branch information
larsbutler committed Oct 4, 2017
1 parent d35f8a5 commit 36c4722
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -4,7 +4,8 @@ python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- "pip install tox" # for running tests only
- "python setup.py -q install"
script: tox
script: export PY_TEST_VERSION=py$(echo ${TRAVIS_PYTHON_VERSION} | sed 's/\.//') && tox -e style,$PY_TEST_VERSION

0 comments on commit 36c4722

Please sign in to comment.