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