diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2016-02-20 15:51:31 +0000 |
---|---|---|
committer | Federico Ceratto <federico.ceratto@gmail.com> | 2016-02-20 16:11:19 +0000 |
commit | 255018deacc817a160bdefaefd0b3a8c9ae729b9 (patch) | |
tree | feead73ab805d510e7d9c1ec8d1ed8d83b3c6378 /.travis.yml | |
parent | 420109ed537bbcd7118662e819f87dc78c33f53e (diff) | |
download | cmd2-git-255018deacc817a160bdefaefd0b3a8c9ae729b9.tar.gz |
Enable testing Python 3.5 using matrix
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 58a16053..890d5c05 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,19 @@ language: python sudo: false # enable container-based build -env: - - TOXENV=py27 - - TOXENV=py33 - - TOXENV=py34 - # - TOXENV=py35 https://github.com/travis-ci/travis-ci/issues/4794 - - TOXENV=pypy install: - pip install tox script: - tox +# workaround for https://github.com/travis-ci/travis-ci/issues/4794 +matrix: + include: + - python: 2.7 + env: TOXENV=py27 + - python: 3.3 + env: TOXENV=py33 + - python: 3.4 + env: TOXENV=py34 + - python: 3.5 + env: TOXENV=py35 + - python: pypy + env: TOXENV=pypy |