From 6bf67f4a881593648092fd863df4816089cfbef5 Mon Sep 17 00:00:00 2001 From: Tiara Rodney Date: Fri, 20 Jun 2025 20:17:56 +0200 Subject: [PATCH] chore(test): update Makefile --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 37439f1..f1b82b3 100644 --- a/Makefile +++ b/Makefile @@ -16,8 +16,13 @@ configure: configure.ac .venv/bin/python3 -m pip install --upgrade pip .venv/bin/pip install -r requirements-dev.txt -test-reports: - .venv/bin/python3 -m unittest discover -v +test-reports: test-reports/unit test-reports/static + +test-reports/unit: + python3 -m pipenv run -v test-unit + +test-reports/static: + python3 -m pipenv run -v test-static build: .venv/bin/pipenv .venv/bin/pipenv run build