Skip to content

Commit

Permalink
Try to fix travis-ci missing python versions with tox-travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexamici committed Jan 22, 2017
1 parent e4d304c commit 93a0079
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,25 @@ addons:
- libgdal-dev

language: python
python: 3.6
env:
- TOX_ENV=quality-check
- TOX_ENV=pypy
- TOX_ENV=py36
- TOX_ENV=py35
- TOX_ENV=py34
- TOX_ENV=py33
- TOX_ENV=py27
- TOX_ENV=docs
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
matrix:
fast_finish: true
include:
- python: 3.5
env: TOXENV=docs
- python: 3.5
env: TOXENV=quality-check

install:
- pip install tox
- pip install tox tox-travis
- pip install coveralls
script: tox -e $TOX_ENV
script: tox
after_success:
- if [[ $TOX_ENV == "quality-check" ]]; then
coveralls;
Expand Down

0 comments on commit 93a0079

Please sign in to comment.