Skip to content

Commit 536367f

Browse files
authored
Merge pull request #3 from scop/test-37-to-39
Test with Python 3.7, 3.8, and 3.9
2 parents b362954 + 2f3935c commit 536367f

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ python:
88
- "3.4"
99
- "3.5"
1010
- "3.6"
11-
#- "3.7"
11+
- "3.7"
12+
- "3.8"
13+
- "3.9-dev"
1214

1315
install:
1416
- pip install tox-travis

tox.ini

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# directory.
55

66
[tox]
7-
envlist = py34,py35,py36,py37,flake8,pylint,refactory
7+
envlist = py34,py35,py36,py37,py38,py39,flake8,pylint,refactory
88
skip_missing_interpreters = true
99

1010
[testenv]
@@ -17,7 +17,7 @@ setenv =
1717
commands =
1818
pytest
1919

20-
[testenv:py36]
20+
[testenv:py38]
2121
deps =
2222
pytest
2323
pytest-cov
@@ -65,7 +65,10 @@ commands =
6565
python =
6666
3.4: py34
6767
3.5: py35
68-
3.6: py36, flake8, pylint, coverage
68+
3.6: py36
69+
3.7: py37
70+
3.8: py38, flake8, pylint, coverage
71+
3.9-dev: py39
6972

7073
# .coveragerc to control coverage.py
7174
[report]

0 commit comments

Comments
 (0)