Skip to content

Commit

Permalink
Simplify .travis.yml, modeling on django-scribbler which works
Browse files Browse the repository at this point in the history
  • Loading branch information
dpoirier committed Nov 1, 2017
1 parent 8293f50 commit f735368
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
# Need multiple versions of Python available
addons:
apt:
packages:
- python2.7
- python3.4
- python3.5
- python3.6
sudo: false

language: python

python:
- "3.6"
- "3.5"

# Test a sampling of combinations
env:
- TOXENV=py27-1.7,py34-1.7
- TOXENV=py27-1.8,py34-1.8,py36-1.8
- TOXENV=py27-1.9,py35-1.9
- TOXENV=py27-1.10,py35-1.10,py36-1.10
- TOXENV=py27-1.11,py34-1.11,py35-1.11,py36-1.11
- TOXENV=py27-1.7
- TOXENV=py27-1.8
- TOXENV=py27-1.10
- TOXENV=py27-1.11
- TOXENV=py34-1.7
- TOXENV=py34-1.8
- TOXENV=py34-1.11
- TOXENV=py35-1.9
- TOXENV=py35-1.10
- TOXENV=py35-1.11
- TOXENV=py36-1.8
- TOXENV=py36-1.10
- TOXENV=py36-1.11

install:
- pip install tox
Expand Down

0 comments on commit f735368

Please sign in to comment.