@@ -38,7 +38,8 @@ def collective_rpc(self,
3838CustomUniExecutorAsync = CustomUniExecutor
3939
4040
41- @pytest .mark .parametrize ("model" , [f"{ MODEL_WEIGHTS_S3_BUCKET } /distilgpt2" ])
41+ @pytest .mark .parametrize ("model" ,
42+ [f"{ MODEL_WEIGHTS_S3_BUCKET } /distilbert/distilgpt2" ])
4243def test_custom_executor_type_checking (model ):
4344 with pytest .raises (ValueError ):
4445 engine_args = EngineArgs (model = model ,
@@ -51,7 +52,8 @@ def test_custom_executor_type_checking(model):
5152 AsyncLLMEngine .from_engine_args (engine_args )
5253
5354
54- @pytest .mark .parametrize ("model" , [f"{ MODEL_WEIGHTS_S3_BUCKET } /distilgpt2" ])
55+ @pytest .mark .parametrize ("model" ,
56+ [f"{ MODEL_WEIGHTS_S3_BUCKET } /distilbert/distilgpt2" ])
5557def test_custom_executor (model , tmp_path ):
5658 cwd = os .path .abspath ("." )
5759 os .chdir (tmp_path )
@@ -75,7 +77,8 @@ def test_custom_executor(model, tmp_path):
7577 os .chdir (cwd )
7678
7779
78- @pytest .mark .parametrize ("model" , [f"{ MODEL_WEIGHTS_S3_BUCKET } /distilgpt2" ])
80+ @pytest .mark .parametrize ("model" ,
81+ [f"{ MODEL_WEIGHTS_S3_BUCKET } /distilbert/distilgpt2" ])
7982def test_custom_executor_async (model , tmp_path ):
8083 cwd = os .path .abspath ("." )
8184 os .chdir (tmp_path )
@@ -103,7 +106,8 @@ async def t():
103106 os .chdir (cwd )
104107
105108
106- @pytest .mark .parametrize ("model" , [f"{ MODEL_WEIGHTS_S3_BUCKET } /distilgpt2" ])
109+ @pytest .mark .parametrize ("model" ,
110+ [f"{ MODEL_WEIGHTS_S3_BUCKET } /distilbert/distilgpt2" ])
107111def test_respect_ray (model ):
108112 # even for TP=1 and PP=1,
109113 # if users specify ray, we should use ray.
0 commit comments