We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b10e76 commit 3851217Copy full SHA for 3851217
.travis.yml
@@ -3,6 +3,8 @@ language: python
3
python:
4
- "3.5"
5
- "3.6"
6
+ - "3.7"
7
+ - "3.8"
8
9
install:
10
- pip install tox-travis
tox.ini
@@ -1,6 +1,6 @@
1
[tox]
2
envlist =
- py{35,36,37}
+ py{35,36,37,38}
code-linters
# 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_
whitelist_externals =
bash
11
deps =
12
- py{35,36,37}: -rtests/requirements.txt
+ -r tests/requirements.txt
13
commands =
14
bash ./tests/test.sh
15
python -m unittest discover -s tests/jobwatcher -p "*tests.py"
0 commit comments