Skip to content
This repository has been archived by the owner on Nov 27, 2018. 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 f0016b8 commit 5d67010
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .travis.yml
@@ -1,15 +1,22 @@
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
- if [ "$TOXENV" = 'py34' ]; then pip install coveralls; fi

script:
- tox -e $TOXENV

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

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 5d67010

Please sign in to comment.