Skip to content

Commit 7b3c9ce

Browse files
Fix CI: remove duplicate lightweight test run
Lightweight tests are already included in fast tests since they're not marked as slow/e2e/integration. Running them separately caused duplication.
1 parent bade035 commit 7b3c9ce

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,10 @@ jobs:
3030
source .venv/bin/activate
3131
uv pip install -r requirements.txt
3232
33-
- name: Run fast tests
33+
- name: Run all fast tests
3434
run: |
3535
source .venv/bin/activate
3636
pytest tests/ -m "not slow and not e2e and not integration" -v --tb=short
37-
38-
- name: Run lightweight embedding tests
39-
run: |
40-
source .venv/bin/activate
41-
pytest tests/ -m "lightweight" -v --tb=short
4237
4338
e2e-tests:
4439
name: End-to-End Tests (API)

0 commit comments

Comments
 (0)