Skip to content

Commit 1800ad1

Browse files
committed
Fix integration workflow: Remove --dist=loadgroup from non-telemetry tests
- Remove --dist=loadgroup from non-telemetry job (only needed for telemetry) - Remove test_telemetry_e2e.py from telemetry job (was skipped before) - This should fix test_uc_volume_life_cycle failure caused by changed test distribution
1 parent 489ffd4 commit 1800ad1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
poetry run python -m pytest tests/e2e \
6161
--ignore=tests/e2e/test_telemetry_e2e.py \
6262
--ignore=tests/e2e/test_concurrent_telemetry.py \
63-
-n auto --dist=loadgroup
63+
-n auto
6464
6565
run-telemetry-tests:
6666
runs-on: ubuntu-latest
@@ -100,7 +100,7 @@ jobs:
100100
run: poetry install --no-interaction --all-extras
101101
- name: Run telemetry tests in isolation
102102
run: |
103-
# Run telemetry tests in fresh Python process with complete isolation
103+
# Run test_concurrent_telemetry.py in isolation with complete process separation
104104
# Use --dist=loadgroup to respect @pytest.mark.xdist_group markers
105-
poetry run python -m pytest tests/e2e/test_concurrent_telemetry.py tests/e2e/test_telemetry_e2e.py \
105+
poetry run python -m pytest tests/e2e/test_concurrent_telemetry.py \
106106
-n auto --dist=loadgroup -v

0 commit comments

Comments
 (0)