Skip to content

Commit

Permalink
main: add basic Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
balinthaller committed Dec 7, 2020
1 parent 4b737e2 commit 73cc31b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
clean:
find . -name \*.pyc -delete
find . -name __pycache__ -delete
rm -rf dist/

.PHONY: test_unit
test_unit:
python3 -bb -m pytest tests

.PHONY: test
test: test_unit

0 comments on commit 73cc31b

Please sign in to comment.