From 2f2b8c014309db6ee7d0c70549bfbc8ee0216c73 Mon Sep 17 00:00:00 2001 From: apalala Date: Sun, 12 Nov 2023 17:06:17 -0400 Subject: [PATCH] [test] install required packages in Makefile --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8760d97..38b9c6e 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,19 @@ -test: lint pytest mypy +test: base lint pytest mypy + + +base: + -@ pip install -qU pip lint: + -@ pip install -qU ruff ruff --preview late test pytest: + -@ pip install -qU pytest pytest -v mypy: + -@ pip install -qU mypy mypy --ignore-missing-imports --check-untyped-defs late test