File tree Expand file tree Collapse file tree 2 files changed +1
-18
lines changed Expand file tree Collapse file tree 2 files changed +1
-18
lines changed Original file line number Diff line number Diff line change @@ -249,23 +249,6 @@ def llama_2_7b_model_extra_embeddings(llama_2_7b_engine_extra_embeddings):
249
249
model_runner .model )
250
250
251
251
252
- @pytest .fixture (params = [True , False ])
253
- def run_with_both_engines_lora (request , monkeypatch ):
254
- # Automatically runs tests twice, once with V1 and once without
255
- use_v1 = request .param
256
- # Tests decorated with `@skip_v1` are only run without v1
257
- skip_v1 = request .node .get_closest_marker ("skip_v1" )
258
-
259
- if use_v1 :
260
- if skip_v1 :
261
- pytest .skip ("Skipping test on vllm V1" )
262
- monkeypatch .setenv ('VLLM_USE_V1' , '1' )
263
- else :
264
- monkeypatch .setenv ('VLLM_USE_V1' , '0' )
265
-
266
- yield
267
-
268
-
269
252
@pytest .fixture
270
253
def reset_default_device ():
271
254
"""
Original file line number Diff line number Diff line change @@ -489,4 +489,4 @@ def fetch_video(
489
489
"video" : video_io_kwargs
490
490
}
491
491
media_connector = MediaConnector (media_io_kwargs = media_io_kwargs )
492
- return media_connector .fetch_video (video_url )
492
+ return media_connector .fetch_video (video_url )
You can’t perform that action at this time.
0 commit comments