Skip to content

Commit 1777c52

Browse files
add python 3.7 to tox
1 parent 2a8befd commit 1777c52

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=flake8,py27,py34,py35,py36,pypy,pypy3,docs,coverage
2+
envlist=flake8,py27,py34,py35,py36,py37,pypy,pypy3,docs,coverage
33
skip_missing_interpreters=True
44

55
[testenv]
@@ -11,22 +11,24 @@ deps=
1111
coverage
1212
mock
1313
basepython =
14+
flake8: python3.6
1415
py27: python2.7
1516
py34: python3.4
1617
py35: python3.5
1718
py36: python3.6
19+
py37: python3.7
1820
pypy: pypy
1921
pypy3: pypy3
22+
docs: python3.6
23+
coverage: python3.6
2024

2125
[testenv:flake8]
22-
basepython=python3.6
2326
deps=
2427
flake8
2528
commands=
2629
flake8 --exclude=".*" --ignore=E402,E722 socketio tests
2730

2831
[testenv:docs]
29-
basepython=python2.7
3032
changedir=docs
3133
deps=
3234
sphinx
@@ -36,7 +38,6 @@ commands=
3638
make html
3739

3840
[testenv:coverage]
39-
basepython=python3.6
4041
commands=
4142
coverage run --branch --source=socketio setup.py test
4243
coverage html

0 commit comments

Comments
 (0)