-
-
Notifications
You must be signed in to change notification settings - Fork 898
Expand file tree
/
Copy pathtox.ini
More file actions
28 lines (25 loc) · 540 Bytes
/
tox.ini
File metadata and controls
28 lines (25 loc) · 540 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
[tox]
skip_missing_interpreters=True
[testenv]
commands=
pip install -e .
pip install "flask{env:FLASK_VERSION:}" "werkzeug{env:FLASK_VERSION:}"
pytest -p no:logging --cov=flask_socketio --cov-branch --cov-report=term-missing --cov-report=xml
deps=
pytest
pytest-cov
redis
[testenv:flake8]
commands=
flake8 --exclude=".*" --ignore=W503,E402,E722 src/flask_socketio test_socketio.py
deps=
flake8
[testenv:docs]
changedir=docs
deps=
sphinx
furo
allowlist_externals=
make
commands=
make html