From 0b8d1bba3b6efbd5384721a8ff34431e91e6aa84 Mon Sep 17 00:00:00 2001 From: Rajive Joshi Date: Tue, 5 Aug 2025 19:58:19 -0700 Subject: [PATCH] fix: update uv invocation so that 'make test' in the top-level directory runs all the tests --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 40a0678..c8adf51 100755 --- a/Makefile +++ b/Makefile @@ -3,9 +3,9 @@ # Test in an isolated Python environment. # uv python pin to set the version. test: - (env -u PYTHONPATH uv run --isolated --python 3.13 python -m pytest) + (env -u PYTHONPATH uv run --isolated --extra petl --group test --python 3.13 python -m pytest) test-all: for V in 3.7 3.8 3.9 3.10 3.11 3.12 3.13 ; do \ - (env -u PYTHONPATH uv run --isolated --python $$V python -m pytest) ; \ + (env -u PYTHONPATH uv run --isolated --extra petl --group test --python $$V python -m pytest) ; \ done