From 92dace165b63824028102ea528c7b1b0134cbf60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Fri, 25 Jun 2021 19:56:52 +0200 Subject: [PATCH] Add Makefile --- .editorconfig | 5 ++++- Makefile | 7 +++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 Makefile diff --git a/.editorconfig b/.editorconfig index 6065fe6..dce1e5b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,4 +8,7 @@ charset = utf-8 [*.py] indent_style = space -indent_size = 2 \ No newline at end of file +indent_size = 2 + +[Makefile] +indent_size = tab \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ad708f1 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +init: + pip install -r requirements.txt + +test: + py.test tests + +.PHONY: init test \ No newline at end of file