From 875b796a2170f3ac811de9644cb707d9805ebc88 Mon Sep 17 00:00:00 2001 From: Brandon Corfman Date: Sun, 20 Oct 2024 16:38:24 -0400 Subject: [PATCH] Use uv to run pytest --- .github/workflows/build-test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yaml b/.github/workflows/build-test.yaml index da9265d..13ac155 100644 --- a/.github/workflows/build-test.yaml +++ b/.github/workflows/build-test.yaml @@ -43,6 +43,6 @@ jobs: - name: Run tests run: | if [ "${{ runner.os }}" == "Windows" ]; then - python -c "import setup_headless" + uv run python -c "import setup_headless" fi - pytest tests/ --show-capture=no \ No newline at end of file + uv run pytest tests/ --show-capture=no \ No newline at end of file