Add Makefile

This commit is contained in:
Lukáš Kucharczyk 2021-06-25 19:56:52 +02:00
parent e65e16d37b
commit 92dace165b
No known key found for this signature in database
GPG Key ID: 65524498C0196B64
2 changed files with 11 additions and 1 deletions

View File

@ -8,4 +8,7 @@ charset = utf-8
[*.py]
indent_style = space
indent_size = 2
indent_size = 2
[Makefile]
indent_size = tab

7
Makefile Normal file
View File

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