squeaknode/Makefile
2020-07-18 03:38:32 -07:00

25 lines
348 B
Makefile

all: test
clean:
rm -rf build dist *.egg-info/ .tox/ target/ venv/ instance/
find . -name '*.pyc' -delete
find . -name '__pycache__' -delete
find . -name '*~' -delete
test:
tox
tox -e codechecks
itest:
./itests/run_itest.sh
coverage:
tox -e coverage
mypy:
tox -e mypy
run:
tox -e run
.PHONY: all clean test itest coverage mypy run