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