squeaknode/Makefile
2020-02-22 19:59:29 -08:00

17 lines
233 B
Makefile

all: test
clean:
rm -rf build dist *.egg-info/ .tox/ target/ venv/
find . -name '*.pyc' -delete
find . -name '__pycache__' -delete
test:
tox
coverage:
tox -e coverage
mypy:
tox -e mypy
.PHONY: all clean test coverage mypy