Skip to content

Commit 3851217

Browse files
committed
Enable travis tests for python 3.7 and 3.8
Signed-off-by: Francesco De Martino <[email protected]>
1 parent 9b10e76 commit 3851217

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ language: python
33
python:
44
- "3.5"
55
- "3.6"
6+
- "3.7"
7+
- "3.8"
68

79
install:
810
- pip install tox-travis

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{35,36,37}
3+
py{35,36,37,38}
44
code-linters
55

66
# Default testenv. Used to run tests on all python versions.
@@ -9,7 +9,7 @@ passenv = CI TRAVIS_BUILD_ID TRAVIS TRAVIS_BRANCH TRAVIS_JOB_NUMBER TRAVIS_PULL_
99
whitelist_externals =
1010
bash
1111
deps =
12-
py{35,36,37}: -rtests/requirements.txt
12+
-r tests/requirements.txt
1313
commands =
1414
bash ./tests/test.sh
1515
python -m unittest discover -s tests/jobwatcher -p "*tests.py"

0 commit comments

Comments
 (0)