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 2a8befd commit 1777c52Copy full SHA for 1777c52
1 file changed
tox.ini
@@ -1,5 +1,5 @@
1
[tox]
2
-envlist=flake8,py27,py34,py35,py36,pypy,pypy3,docs,coverage
+envlist=flake8,py27,py34,py35,py36,py37,pypy,pypy3,docs,coverage
3
skip_missing_interpreters=True
4
5
[testenv]
@@ -11,22 +11,24 @@ deps=
11
coverage
12
mock
13
basepython =
14
+ flake8: python3.6
15
py27: python2.7
16
py34: python3.4
17
py35: python3.5
18
py36: python3.6
19
+ py37: python3.7
20
pypy: pypy
21
pypy3: pypy3
22
+ docs: python3.6
23
+ coverage: python3.6
24
25
[testenv:flake8]
-basepython=python3.6
26
deps=
27
flake8
28
commands=
29
flake8 --exclude=".*" --ignore=E402,E722 socketio tests
30
31
[testenv:docs]
-basepython=python2.7
32
changedir=docs
33
34
sphinx
@@ -36,7 +38,6 @@ commands=
36
38
make html
37
39
40
[testenv:coverage]
41
42
coverage run --branch --source=socketio setup.py test
43
coverage html
0 commit comments