Skip to content

Commit a514ca2

Browse files
committed
Fix code-coverage workflow: Remove test_telemetry_e2e.py from coverage tests
- Only run test_concurrent_telemetry.py in isolated telemetry step - test_telemetry_e2e.py was excluded in original workflow, keep it excluded
1 parent 1800ad1 commit a514ca2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/code-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ jobs:
103103
- name: Run telemetry tests with coverage (isolated)
104104
continue-on-error: false
105105
run: |
106-
# Run telemetry tests separately for isolation
107-
poetry run pytest tests/e2e/test_concurrent_telemetry.py tests/e2e/test_telemetry_e2e.py \
106+
# Run test_concurrent_telemetry.py separately for isolation
107+
poetry run pytest tests/e2e/test_concurrent_telemetry.py \
108108
--cov=src \
109109
--cov-append \
110110
--cov-report=xml \

0 commit comments

Comments
 (0)