Skip to content

Commit

Permalink
Add Makefile common acctions to make contributing easier (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmoore247 authored Mar 5, 2024
1 parent a117c94 commit 1f215f0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1f215f0

Please sign in to comment.