From 45ec8865599d248895ab5c940ec0e9bbc6a00966 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 8 Sep 2025 21:27:27 -0600 Subject: [PATCH] tox: Use uv to run pytest and sphinx Signed-off-by: Zack Cerza --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d68e59d5..2f3e0f4a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,8 +33,7 @@ jobs: run: pipx ensurepath - name: Lint run: uv tool run ruff check - - - name: Run unit tests - run: tox -e py3 + - name: Run tests + run: uv run --all-extras pytest teuthology scripts - name: Run docs build - run: tox -e docs + run: uv run tox -e docs -- 2.47.3