From e94499a6a4eecc5d289a8787ec334cf3954abf85 Mon Sep 17 00:00:00 2001 From: gnzng Date: Mon, 10 Nov 2025 12:42:32 -0800 Subject: [PATCH] fix: update pytest command to use 'uv' for consistency in CI workflow --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3316f7d..672014e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,7 +35,8 @@ jobs: uv pip install ."[tests]" - name: Run tests - run: python -m pytest + run: | + uv run pytest build-docs: if: github.event_name == 'push' && github.ref == 'refs/heads/master'