Skip to content

Commit b6bc26c

Browse files
test: skip online replay smoke variants (intermittent hang) (ai-dynamo#9584)
1 parent 4975f7f commit b6bc26c

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

lib/bindings/python/tests/replay/test_replay_smoke.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
]
3131

3232

33+
@pytest.fixture(autouse=True)
34+
def _skip_online(request):
35+
callspec = getattr(request.node, "callspec", None)
36+
if callspec and callspec.params.get("replay_mode") == "online":
37+
pytest.skip("intermittent hang in online replay mode (#9548)")
38+
39+
3340
@pytest.mark.parametrize("engine_type", ["vllm", "sglang"])
3441
@pytest.mark.parametrize("replay_mode", ["offline", "online"])
3542
@pytest.mark.parametrize("router_mode", ["round_robin", "kv_router"])

0 commit comments

Comments
 (0)