|
|
@ -1,5 +1,5 @@ |
|
|
|
[tox] |
|
|
|
envlist=flake8,py27,py33,py34,py35,pypy,docs,coverage |
|
|
|
envlist=flake8,py27,py34,py35,py36,pypy,docs,coverage |
|
|
|
skip_missing_interpreters=True |
|
|
|
|
|
|
|
[testenv] |
|
|
@ -7,6 +7,15 @@ commands= |
|
|
|
coverage run --branch --include="socketio/*" setup.py test |
|
|
|
coverage report --show-missing |
|
|
|
coverage erase |
|
|
|
deps= |
|
|
|
coverage |
|
|
|
mock |
|
|
|
basepython = |
|
|
|
py27: python2.7 |
|
|
|
py34: python3.4 |
|
|
|
py35: python3.5 |
|
|
|
py36: python3.6 |
|
|
|
pypy: pypy |
|
|
|
|
|
|
|
[testenv:flake8] |
|
|
|
basepython=python |
|
|
@ -15,32 +24,6 @@ deps= |
|
|
|
commands= |
|
|
|
flake8 --exclude=".*" --ignore=E402 socketio tests |
|
|
|
|
|
|
|
[testenv:py27] |
|
|
|
basepython=python2.7 |
|
|
|
deps= |
|
|
|
coverage |
|
|
|
mock |
|
|
|
|
|
|
|
[testenv:py33] |
|
|
|
basepython=python3.3 |
|
|
|
deps= |
|
|
|
coverage |
|
|
|
|
|
|
|
[testenv:py34] |
|
|
|
basepython=python3.4 |
|
|
|
deps= |
|
|
|
coverage |
|
|
|
|
|
|
|
[testenv:py35] |
|
|
|
basepython=python3.5 |
|
|
|
deps= |
|
|
|
coverage |
|
|
|
|
|
|
|
[testenv:pypy] |
|
|
|
basepython=pypy |
|
|
|
deps= |
|
|
|
coverage |
|
|
|
|
|
|
|
[testenv:docs] |
|
|
|
basepython=python2.7 |
|
|
|
changedir=docs |
|
|
@ -53,8 +36,6 @@ commands= |
|
|
|
|
|
|
|
[testenv:coverage] |
|
|
|
basepython=python |
|
|
|
deps= |
|
|
|
coverage |
|
|
|
commands= |
|
|
|
coverage run --branch --source=socketio setup.py test |
|
|
|
coverage html |
|
|
|