Add Makefile

This commit is contained in:
2021-06-25 19:56:52 +02:00
parent e65e16d37b
commit 92dace165b
2 changed files with 11 additions and 1 deletions

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
init:
pip install -r requirements.txt
test:
py.test tests
.PHONY: init test