From 5edae72284069307ccdc9c36dcde172284b289fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9cile=20Vuilleumier?= Date: Wed, 21 Aug 2024 15:50:27 +0200 Subject: [PATCH] Use Poetry --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a92089a..54ffe5b 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,9 @@ help: ## Display this help message .PHONY: install install: ## Install package - pip install . + poetry install + poetry shell .PHONY: tests tests: ## Run unit tests - pytest -vvv tests + python -m pytest -vvv tests