From ec75aa58899ec87e253ac7f34d8438b0f4d6b6a7 Mon Sep 17 00:00:00 2001 From: Dan Saunders Date: Tue, 30 Sep 2025 16:52:37 -0400 Subject: [PATCH] fix --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 914ef48c2..8159d55ac 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -103,10 +103,10 @@ jobs: - name: Run tests run: | - pytest -v --durations=10 -n8 --dist loadfile --ignore=tests/e2e/ --ignore=tests/patched/ --ignore=tests/cli/ --ignore=tests/monkeypatch/ tests/ --cov=axolotl --cov-report=xml - pytest -v --durations=10 tests/monkeypatch/ --cov=axolotl --cov-append --cov-report=xml - pytest -v --durations=10 tests/patched/ --cov=axolotl --cov-append --cov-report=xml - pytest -v --durations=10 tests/cli/ --cov=axolotl --cov-append --cov-report=xml + uv run pytest -v --durations=10 -n8 --dist loadfile --ignore=tests/e2e/ --ignore=tests/patched/ --ignore=tests/cli/ --ignore=tests/monkeypatch/ tests/ --cov=axolotl --cov-report=xml + uv run pytest -v --durations=10 tests/monkeypatch/ --cov=axolotl --cov-append --cov-report=xml + uv run pytest -v --durations=10 tests/patched/ --cov=axolotl --cov-append --cov-report=xml + uv run pytest -v --durations=10 tests/cli/ --cov=axolotl --cov-append --cov-report=xml - name: Upload coverage to Codecov uses: codecov/codecov-action@v5