squeaknode/Makefile
2020-11-06 18:05:29 -05:00

32 lines
458 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
make --directory=frontend clean;
test:
tox
tox -e codechecks
codeformat:
tox -e autoflake
tox -e autopep8
tox -e isort
tox -e black
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