diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e3abacf --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +.PHONY: clean dev test + +clean: + rm -fr .venv clean htmlcov .mypy_cache .pytest_cache .ruff_cache .coverage coverage.xml + rm -fr **/*.pyc + +dev: + pip install -e ".[local,test]" + + +test: + pytest tests/unit --cov