File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments