Skip to content

Commit 3cded94

Browse files
committed
update comments
1 parent 8194ca9 commit 3cded94

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ def num_system_ports(request) -> int:
646646
Default: 1 port.
647647
648648
Tests that need multiple system ports (e.g. SYSTEM_PORT1 + SYSTEM_PORT2) must
649-
explicitly request them via indirect parametrization, e.g.:
649+
explicitly request them via indirect parametrization:
650650
@pytest.mark.parametrize("num_system_ports", [2], indirect=True)
651651
"""
652652
return getattr(request, "param", 1)

tests/utils/managed_process.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -600,15 +600,9 @@ def __init__(
600600
):
601601
# TODO: Refactor remaining duplicate "DynamoFrontendProcess" helpers in tests to
602602
# use this shared implementation (and delete the copies):
603-
# - tests/frontend/test_vllm.py
604-
# - tests/router/common.py
605-
# - tests/router/test_router_e2e_with_vllm.py
606-
# - tests/router/test_router_e2e_with_sglang.py
607-
# - tests/router/test_router_e2e_with_trtllm.py
608603
# - tests/fault_tolerance/cancellation/utils.py
609604
# - tests/fault_tolerance/migration/utils.py
610605
# - tests/fault_tolerance/etcd_ha/utils.py
611-
# - tests/fault_tolerance/test_vllm_health_check.py
612606
self._allocated_http_port: Optional[int] = None
613607
if frontend_port == 0:
614608
# Treat `0` as "allocate a random free port" for xdist-safe tests.

0 commit comments

Comments
 (0)