From 3ae47ec7de3fa9a511b9e7fbd7f9497aa51ff13b Mon Sep 17 00:00:00 2001 From: Dan Saunders Date: Fri, 14 Mar 2025 00:44:10 +0000 Subject: [PATCH] actually isolate CLI tests --- .github/workflows/tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 32bb42821..66d95b3d4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -98,8 +98,9 @@ jobs: - name: Run tests run: | - pytest -v -n8 --dist loadfile --ignore=tests/e2e/ --ignore=tests/patched/ tests/ + pytest -v -n8 --dist loadfile --ignore=tests/e2e/ --ignore=tests/patched/ --ignore=tests/cli/ tests/ pytest -v tests/patched/ + pytest -v tests/cli/ - name: cleanup pip cache run: | @@ -172,8 +173,9 @@ jobs: - name: Run tests run: | - pytest -v -n8 --dist loadfile --ignore=tests/e2e/ --ignore=tests/patched/ tests/ + pytest -v -n8 --dist loadfile --ignore=tests/e2e/ --ignore=tests/patched/ --ignore=tests/cli/ tests/ pytest -v tests/patched/ + pytest -v tests/cli/ - name: cleanup pip cache run: |