We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25708d3 commit 04fe61aCopy full SHA for 04fe61a
tests/models/test_oot_registration.py
@@ -15,13 +15,10 @@ def test_plugin(
15
monkeypatch: pytest.MonkeyPatch,
16
dummy_opt_path: str,
17
):
18
- # V1 shuts down rather than raising an error here.
19
with monkeypatch.context() as m:
20
- m.setenv("VLLM_USE_V1", "0")
21
m.setenv("VLLM_PLUGINS", "")
22
23
- match = "Cannot find model module"
24
- with pytest.raises(ValueError, match=match):
+ with pytest.raises(ValueError, match="are not supported for now"):
25
LLM(model=dummy_opt_path, load_format="dummy")
26
27
0 commit comments