Updated .travis.yml

This commit is contained in:
Fabio Caccamo 2019-05-17 17:10:37 +02:00
parent dd35ee43ac
commit a23b86983c
1 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,5 @@
language: python language: python
cache: pip
python: 3.5 python: 3.5
env: env:
- TOX_ENV=py34 - TOX_ENV=py34
@ -8,14 +9,16 @@ env:
matrix: matrix:
include: include:
- python: "3.6" - python: "3.6"
env: TOX_ENV=py36 env:
- TOX_ENV=py36
- python: "3.7" - python: "3.7"
env: TOX_ENV=py37 env:
- TOX_ENV=py37
dist: xenial dist: xenial
language: python language: python
sudo: required sudo: required
install: install:
- pip install tox - pip install tox
script: script:
- tox -e - tox -e $TOX_ENV
sudo: false sudo: false