From 67f5090bf89e8c2662d5df896d20cccb46c8198f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Thu, 5 Jan 2023 12:19:56 +0100 Subject: [PATCH] Rely on poetry for make test --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cb14996..14cbc14 100644 --- a/Makefile +++ b/Makefile @@ -37,4 +37,10 @@ createsuperuser: python src/web/manage.py createsuperuser shell: - python src/web/manage.py shell \ No newline at end of file + python src/web/manage.py shell + +poetry.lock: + poetry install + +test: poetry.lock + poetry run pytest \ No newline at end of file