Skip to content

Commit f945405

Browse files
committed
Adding Python 3.5 on Travis.
Also removing unit tests on Travis for Python 3.4 (to keep the builds fast, if possible).
1 parent 40d545d commit f945405

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.travis.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
language: python
22
sudo: false
33

4+
addons:
5+
apt:
6+
sources:
7+
- deadsnakes
8+
packages:
9+
- python3.5
10+
411
install:
512
- pip install --upgrade pip tox
613

714
script:
815
- python2.7 scripts/run_unit_tests.py
9-
- python3.4 scripts/run_unit_tests.py
16+
- python3.5 scripts/run_unit_tests.py
1017
- python scripts/run_unit_tests.py --tox-env cover
1118
- tox -e lint
1219
- tox -e system-tests

0 commit comments

Comments
 (0)