update .travis.yml to use a matrix of versions in build
This commit is contained in:
parent
8b454c4765
commit
8596148271
10
.travis.yml
10
.travis.yml
|
@ -1,8 +1,16 @@
|
||||||
language: python
|
language: python
|
||||||
sudo: false
|
sudo: false
|
||||||
cache: pip
|
cache: pip
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- python: 2.7
|
||||||
|
env: TOXENV=py27
|
||||||
|
- python: 3.4
|
||||||
|
env: TOXENV=py34
|
||||||
|
- python: 3.5
|
||||||
|
env: TOXENV=py35
|
||||||
before_install:
|
before_install:
|
||||||
- pip install tox
|
- pip install tox
|
||||||
# command to run tests
|
# command to run tests
|
||||||
script:
|
script:
|
||||||
- tox
|
- tox
|
||||||
|
|
Loading…
Reference in New Issue