Skip to content

Commit

Permalink
Adding Python 3.5 on Travis.
Browse files Browse the repository at this point in the history
Also removing unit tests on Travis for Python 3.4 (to keep
the builds fast, if possible).
  • Loading branch information
dhermes committed Nov 3, 2016
1 parent 40d545d commit f945405
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
language: python
sudo: false

addons:
apt:
sources:
- deadsnakes
packages:
- python3.5

install:
- pip install --upgrade pip tox

script:
- python2.7 scripts/run_unit_tests.py
- python3.4 scripts/run_unit_tests.py
- python3.5 scripts/run_unit_tests.py
- python scripts/run_unit_tests.py --tox-env cover
- tox -e lint
- tox -e system-tests
Expand Down

0 comments on commit f945405

Please sign in to comment.