From 4e75bf1ebbcc91ed8503901b828dd131f7580f0c 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a92089a..d26efa9 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,8 @@ help: ## Display this help message .PHONY: install install: ## Install package - pip install . + poetry install .PHONY: tests tests: ## Run unit tests - pytest -vvv tests + python -m pytest -vvv tests