forked from miguelgrinberg/python-socketio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
36 lines (33 loc) · 620 Bytes
/
tox.ini
File metadata and controls
36 lines (33 loc) · 620 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tox]
envlist=flake8,py35,py36,py37,py38,pypy3,docs
skip_missing_interpreters=True
[testenv]
commands=
pytest -p no:logging --cov=socketio --cov-branch --cov-report=term-missing
deps=
pytest
pytest-cov
mock
basepython =
flake8: python3.8
py35: python3.5
py36: python3.6
py37: python3.7
py38: python3.8
pypy3: pypy3
docs: python3.8
coverage: python3.8
[testenv:flake8]
deps=
six
flake8
commands=
flake8 --exclude=".*" --ignore=W503,E402,E722 socketio tests
[testenv:docs]
changedir=docs
deps=
sphinx
whitelist_externals=
make
commands=
make html