squeaknode/Makefile
2020-02-29 17:54:31 -08:00

21 lines
292 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
coverage:
tox -e coverage
mypy:
tox -e mypy
run:
tox -e run
.PHONY: all clean test coverage mypy run