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

Commit

Permalink
Enable Python 3.5 and require Postgres 9.3 for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Krienbühl committed Oct 5, 2016
1 parent f3b1894 commit b3515d1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .travis.yml
@@ -1,17 +1,25 @@
language: python
python: "3.4"
python: "3.5"
cache: pip

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

addons:
postgresql: "9.3"

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
distributions: "sdist bdist_wheel"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py34,pep8
envlist = py34,py35,pep8

[base]
dependencies = setuptools==18.8.1
Expand Down

0 comments on commit b3515d1

Please sign in to comment.