Skip to content

Commit 3de88b8

Browse files
committed
fix(ci): exclude E2E tests from main test job
E2E tests have their own dedicated job and use module-scoped fixtures. Exclude them from the main test run to avoid event loop scope conflicts with pytest-asyncio.
1 parent f34e95e commit 3de88b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
7474
- name: Run tests with coverage
7575
run: |
76-
pytest tests/ -v --cov=app --cov=db --cov=models --cov-report=xml --cov-report=term-missing
76+
pytest tests/ -v --cov=app --cov=db --cov=models --cov-report=xml --cov-report=term-missing --ignore=tests/e2e/
7777
7878
- name: Upload coverage to Codecov
7979
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)