From: Zack Cerza Date: Tue, 9 Sep 2025 03:27:27 +0000 (-0600) Subject: tox: Use uv to run pytest and sphinx X-Git-Tag: 1.3.0~14^2~9 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=085e9d737b7dae81739d16f16fc30116ffd558ec;p=teuthology.git tox: Use uv to run pytest and sphinx Signed-off-by: Zack Cerza --- 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