From d09b878444d09bfc981475426f67767d1ff3307e Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Fri, 7 Jun 2024 16:53:42 -0700 Subject: [PATCH] Make sure install happens before running tests --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c560611..6588114 100644 --- a/Makefile +++ b/Makefile @@ -18,12 +18,12 @@ install: devenv: install .PHONY: lint -lint: +lint: devenv poetry run pre-commit run --all-files # Runs tests .PHONY: test -test: +test: devenv poetry run pytest # Builds wheel for package to upload @@ -65,7 +65,7 @@ install-hooks: devenv poetry run pre-commit install -f --install-hooks # Generates test coverage -.coverage: +.coverage: devenv poetry run pytest # Builds coverage html