From 022ef7ab4ead944d9731afda5355831402232943 Mon Sep 17 00:00:00 2001 From: Dan Saunders Date: Tue, 30 Sep 2025 17:12:23 -0400 Subject: [PATCH] fix --- .github/workflows/tests.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 404b85454..b96f96d60 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -103,10 +103,10 @@ jobs: - name: Run tests run: | - uv run --system 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 --system pytest -v --durations=10 tests/monkeypatch/ --cov=axolotl --cov-append --cov-report=xml - uv run --system pytest -v --durations=10 tests/patched/ --cov=axolotl --cov-append --cov-report=xml - uv run --system pytest -v --durations=10 tests/cli/ --cov=axolotl --cov-append --cov-report=xml + uv run --no-sync 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 --no-sync pytest -v --durations=10 tests/monkeypatch/ --cov=axolotl --cov-append --cov-report=xml + uv run --no-sync pytest -v --durations=10 tests/patched/ --cov=axolotl --cov-append --cov-report=xml + uv run --no-sync pytest -v --durations=10 tests/cli/ --cov=axolotl --cov-append --cov-report=xml - name: Upload coverage to Codecov uses: codecov/codecov-action@v5 @@ -177,9 +177,9 @@ jobs: - name: Run tests run: | - uv run --system 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 --system pytest -v --durations=10 tests/monkeypatch/ --cov=axolotl --cov-append --cov-report=xml - uv run --system pytest -v --durations=10 tests/cli/ + uv run --no-sync 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 --no-sync pytest -v --durations=10 tests/monkeypatch/ --cov=axolotl --cov-append --cov-report=xml + uv run --no-sync pytest -v --durations=10 tests/cli/ gate-skip-e2e: needs: [pre-commit, pytest, pytest-sdist]