Skip to content
This repository has been archived by the owner on Sep 5, 2019. It is now read-only.

Commit

Permalink
Naively enable Python 3.5 on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Krienbühl committed Oct 4, 2016
1 parent eaea3e9 commit f8b5ecd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
@@ -1,17 +1,22 @@
language: python
python: "3.4"
python: "3.5"
cache: pip

env:
- TOXENV=py34
- TOXENV=py35
- TOXENV=pep8

install:
- pip install tox==1.9.2
- pip install tox
- if [ "$TOXENV" = 'py34' ]; then pip install coveralls; fi

script:
- tox -e $TOXENV

after_success:
- if [ "$TOXENV" = 'py34' ]; then coveralls; fi

deploy:
provider: pypi
user: seantis
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py34,pep8
envlist = py34,py35,pep8

[testenv]
deps = setuptools==18.8.1
Expand Down

0 comments on commit f8b5ecd

Please sign in to comment.