-
-
Notifications
You must be signed in to change notification settings - Fork 583
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (31 loc) · 1.04 KB
/
Makefile
File metadata and controls
40 lines (31 loc) · 1.04 KB
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
.PHONY: default style types tests coverage maxi_cov build clean
export PYTHONASYNCIODEBUG=1
export PYTHONPATH=src
export PYTHONWARNINGS=default
# Work around https://github.com/python/cpython/issues/128384. This prevents
# a test failure in the legacy implementation on free-threaded Python.
# Remove when dropping the legacy implementation.
# Also remove -X context_aware_warnings=0 in tox.ini.
export PYTHON_CONTEXT_AWARE_WARNINGS=0
build:
python setup.py build_ext --inplace
style:
ruff format compliance src tests
ruff check --fix compliance src tests
types:
mypy --strict src
tests:
python -m unittest
coverage:
coverage run --source src/websockets,tests -m unittest
coverage html
coverage report --show-missing --fail-under=100
maxi_cov:
python tests/maxi_cov.py
coverage html
coverage report --show-missing --fail-under=100
clean:
find src -name '*.so' -delete
find . -name '*.pyc' -delete
find . -name __pycache__ -delete
rm -rf .coverage .mypy_cache build compliance/reports dist docs/_build htmlcov MANIFEST src/websockets.egg-info