From ec2911e5b715efb96b0270f13796047bb32ff0c8 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..3d76f16 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 + poetry run pytest -vvv tests