Miguel Grinberg
7 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
1 changed files with
5 additions and
4 deletions
-
tox.ini
|
@ -1,5 +1,5 @@ |
|
|
[tox] |
|
|
[tox] |
|
|
envlist=flake8,py27,py34,py35,py36,pypy,pypy3,docs,coverage |
|
|
envlist=flake8,py27,py34,py35,py36,py37,pypy,pypy3,docs,coverage |
|
|
skip_missing_interpreters=True |
|
|
skip_missing_interpreters=True |
|
|
|
|
|
|
|
|
[testenv] |
|
|
[testenv] |
|
@ -11,22 +11,24 @@ deps= |
|
|
coverage |
|
|
coverage |
|
|
mock |
|
|
mock |
|
|
basepython = |
|
|
basepython = |
|
|
|
|
|
flake8: python3.6 |
|
|
py27: python2.7 |
|
|
py27: python2.7 |
|
|
py34: python3.4 |
|
|
py34: python3.4 |
|
|
py35: python3.5 |
|
|
py35: python3.5 |
|
|
py36: python3.6 |
|
|
py36: python3.6 |
|
|
|
|
|
py37: python3.7 |
|
|
pypy: pypy |
|
|
pypy: pypy |
|
|
pypy3: pypy3 |
|
|
pypy3: pypy3 |
|
|
|
|
|
docs: python3.6 |
|
|
|
|
|
coverage: python3.6 |
|
|
|
|
|
|
|
|
[testenv:flake8] |
|
|
[testenv:flake8] |
|
|
basepython=python3.6 |
|
|
|
|
|
deps= |
|
|
deps= |
|
|
flake8 |
|
|
flake8 |
|
|
commands= |
|
|
commands= |
|
|
flake8 --exclude=".*" --ignore=E402,E722 socketio tests |
|
|
flake8 --exclude=".*" --ignore=E402,E722 socketio tests |
|
|
|
|
|
|
|
|
[testenv:docs] |
|
|
[testenv:docs] |
|
|
basepython=python2.7 |
|
|
|
|
|
changedir=docs |
|
|
changedir=docs |
|
|
deps= |
|
|
deps= |
|
|
sphinx |
|
|
sphinx |
|
@ -36,7 +38,6 @@ commands= |
|
|
make html |
|
|
make html |
|
|
|
|
|
|
|
|
[testenv:coverage] |
|
|
[testenv:coverage] |
|
|
basepython=python3.6 |
|
|
|
|
|
commands= |
|
|
commands= |
|
|
coverage run --branch --source=socketio setup.py test |
|
|
coverage run --branch --source=socketio setup.py test |
|
|
coverage html |
|
|
coverage html |
|
|