blob: d9e16fefe37ae8d1e337cf8450a3008372aa4d43 (
plain)
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
|
.PHONY: default style test coverage build clean
export PYTHONASYNCIODEBUG=1
export PYTHONPATH=src
default: coverage style
style:
isort --recursive src tests
black src tests
flake8 src tests
mypy --strict src
test:
python -W default -m unittest
coverage:
python -m coverage erase
python -W default -m coverage run -m unittest
python -m coverage html
python -m coverage report --show-missing --fail-under=100
build:
python setup.py build_ext --inplace
clean:
find . -name '*.pyc' -o -name '*.so' -delete
find . -name __pycache__ -delete
rm -rf .coverage build compliance/reports dist docs/_build htmlcov MANIFEST src/websockets.egg-info
|