-
-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathtox.ini
More file actions
43 lines (38 loc) · 712 Bytes
/
tox.ini
File metadata and controls
43 lines (38 loc) · 712 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
37
38
39
40
41
42
43
[tox]
envlist=flake8,py310,py311,py312,py313,py314,pypy3,docs
skip_missing_interpreters=True
[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
3.14: py314
pypy-3: pypy3
[testenv]
commands=
pip install -e .
pytest -p no:logging --cov=engineio --cov-branch --cov-report=term-missing --cov-report=xml
deps=
pytest
pytest-cov
pytest-asyncio
aiohttp
tornado
requests
websocket-client
[testenv:pypy3]
[testenv:flake8]
deps=
flake8
commands=
flake8 --exclude=".*" --ignore=W503,E402,E722 src/engineio tests examples
[testenv:docs]
changedir=docs
deps=
sphinx
furo
allowlist_externals=
make
commands=
make html