Skip to content

Commit

Permalink
Adds explicit python versions to travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
RobRuana committed Mar 15, 2017
1 parent f7b57c7 commit 17f6183
Showing 1 changed file with 26 additions and 10 deletions.
36 changes: 26 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,30 @@
language: python
python: 3.5
env:
- TOX_ENV=flake8
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=py36
- TOX_ENV=pypy
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
matrix:
include:
- python: "2.7"
env: TOX_ENV=flake8
- python: "2.6"
env: TOX_ENV=26
- python: "2.7"
env: TOX_ENV=27
- python: "3.3"
env: TOX_ENV=33
- python: "3.4"
env: TOX_ENV=34
- python: "3.5"
env: TOX_ENV=35
- python: "3.6"
env: TOX_ENV=36
- python: "pypy"
env: TOX_ENV=pypy
install:
- pip install tox
- pip install python-coveralls
Expand Down

0 comments on commit 17f6183

Please sign in to comment.