From 19de29be192db18aad41db5c35fd2d779ff42bfc Mon Sep 17 00:00:00 2001 From: Dan Saunders Date: Tue, 30 Sep 2025 17:00:25 -0400 Subject: [PATCH] fix --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8159d55ac..218fcc8ea 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -177,9 +177,9 @@ 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/cli/ + 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/cli/ gate-skip-e2e: needs: [pre-commit, pytest, pytest-sdist]