mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-13 12:33:25 +02:00
20 lines
255 B
Makefile
20 lines
255 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
|
|
|
|
run:
|
|
tox -e run
|
|
|
|
.PHONY: all clean test coverage mypy run
|