File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -166,6 +166,7 @@ steps:
166166 --ignore=entrypoints/openai/test_collective_rpc.py
167167 --ignore=entrypoints/openai/tool_parsers/
168168 --ignore=entrypoints/openai/test_vision.py
169+ --ignore=entrypoints/openai/test_optional_middleware.py
169170 - pytest -v -s entrypoints/test_chat_utils.py
170171
171172- label : Entrypoints Integration Test (Pooling)
Original file line number Diff line number Diff line change @@ -71,8 +71,8 @@ async def test_chat_with_enable_force_include_usage(
7171 assert chunk .usage is None
7272
7373
74- @pytest .fixture (scope = "module" )
75- def transcription_server_with_force_include_usage ():
74+ @pytest .fixture (scope = "module" , params = [ "openai/whisper-large-v3-turbo" ] )
75+ def transcription_server_with_force_include_usage (request ):
7676 args = [
7777 # use half precision for speed and memory savings in CI environment
7878 "--dtype" ,
@@ -85,7 +85,7 @@ def transcription_server_with_force_include_usage():
8585 "0.2" ,
8686 ]
8787
88- with RemoteOpenAIServer ("openai/whisper-large-v3-turbo" , args ) as remote_server :
88+ with RemoteOpenAIServer (request . param , args ) as remote_server :
8989 yield remote_server
9090
9191
@@ -100,6 +100,7 @@ async def transcription_client_with_force_include_usage(
100100
101101
102102@pytest .mark .asyncio
103+ @pytest .mark .encoder_decoder
103104async def test_transcription_with_enable_force_include_usage (
104105 transcription_client_with_force_include_usage , winning_call
105106):
You can’t perform that action at this time.
0 commit comments