Add Makefile

This commit is contained in:
François Voron
2019-10-10 07:28:00 +02:00
parent af63280cf7
commit 84660a29c8
2 changed files with 11 additions and 0 deletions

View File

@@ -12,3 +12,6 @@ end_of_line = lf
[*.yml]
indent_size = 2
[Makefile]
indent_style = tab

8
Makefile Normal file
View File

@@ -0,0 +1,8 @@
PIPENV_RUN := pipenv run
format:
$(PIPENV_RUN) isort -rc .
$(PIPENV_RUN) black .
test:
$(PIPENV_RUN) pytest