1717class TestCodeInterpreter :
1818 parametrize = pytest .mark .parametrize ("client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
1919
20- @pytest .mark .skip (reason = "Prism doesn't support callbacks yet" )
20+ @pytest .mark .skip (reason = "Mock server doesn't support callbacks yet" )
2121 @parametrize
2222 def test_method_execute (self , client : Together ) -> None :
2323 code_interpreter = client .code_interpreter .execute (
@@ -26,7 +26,7 @@ def test_method_execute(self, client: Together) -> None:
2626 )
2727 assert_matches_type (ExecuteResponse , code_interpreter , path = ["response" ])
2828
29- @pytest .mark .skip (reason = "Prism doesn't support callbacks yet" )
29+ @pytest .mark .skip (reason = "Mock server doesn't support callbacks yet" )
3030 @parametrize
3131 def test_method_execute_with_all_params (self , client : Together ) -> None :
3232 code_interpreter = client .code_interpreter .execute (
@@ -43,7 +43,7 @@ def test_method_execute_with_all_params(self, client: Together) -> None:
4343 )
4444 assert_matches_type (ExecuteResponse , code_interpreter , path = ["response" ])
4545
46- @pytest .mark .skip (reason = "Prism doesn't support callbacks yet" )
46+ @pytest .mark .skip (reason = "Mock server doesn't support callbacks yet" )
4747 @parametrize
4848 def test_raw_response_execute (self , client : Together ) -> None :
4949 response = client .code_interpreter .with_raw_response .execute (
@@ -56,7 +56,7 @@ def test_raw_response_execute(self, client: Together) -> None:
5656 code_interpreter = response .parse ()
5757 assert_matches_type (ExecuteResponse , code_interpreter , path = ["response" ])
5858
59- @pytest .mark .skip (reason = "Prism doesn't support callbacks yet" )
59+ @pytest .mark .skip (reason = "Mock server doesn't support callbacks yet" )
6060 @parametrize
6161 def test_streaming_response_execute (self , client : Together ) -> None :
6262 with client .code_interpreter .with_streaming_response .execute (
@@ -77,7 +77,7 @@ class TestAsyncCodeInterpreter:
7777 "async_client" , [False , True , {"http_client" : "aiohttp" }], indirect = True , ids = ["loose" , "strict" , "aiohttp" ]
7878 )
7979
80- @pytest .mark .skip (reason = "Prism doesn't support callbacks yet" )
80+ @pytest .mark .skip (reason = "Mock server doesn't support callbacks yet" )
8181 @parametrize
8282 async def test_method_execute (self , async_client : AsyncTogether ) -> None :
8383 code_interpreter = await async_client .code_interpreter .execute (
@@ -86,7 +86,7 @@ async def test_method_execute(self, async_client: AsyncTogether) -> None:
8686 )
8787 assert_matches_type (ExecuteResponse , code_interpreter , path = ["response" ])
8888
89- @pytest .mark .skip (reason = "Prism doesn't support callbacks yet" )
89+ @pytest .mark .skip (reason = "Mock server doesn't support callbacks yet" )
9090 @parametrize
9191 async def test_method_execute_with_all_params (self , async_client : AsyncTogether ) -> None :
9292 code_interpreter = await async_client .code_interpreter .execute (
@@ -103,7 +103,7 @@ async def test_method_execute_with_all_params(self, async_client: AsyncTogether)
103103 )
104104 assert_matches_type (ExecuteResponse , code_interpreter , path = ["response" ])
105105
106- @pytest .mark .skip (reason = "Prism doesn't support callbacks yet" )
106+ @pytest .mark .skip (reason = "Mock server doesn't support callbacks yet" )
107107 @parametrize
108108 async def test_raw_response_execute (self , async_client : AsyncTogether ) -> None :
109109 response = await async_client .code_interpreter .with_raw_response .execute (
@@ -116,7 +116,7 @@ async def test_raw_response_execute(self, async_client: AsyncTogether) -> None:
116116 code_interpreter = await response .parse ()
117117 assert_matches_type (ExecuteResponse , code_interpreter , path = ["response" ])
118118
119- @pytest .mark .skip (reason = "Prism doesn't support callbacks yet" )
119+ @pytest .mark .skip (reason = "Mock server doesn't support callbacks yet" )
120120 @parametrize
121121 async def test_streaming_response_execute (self , async_client : AsyncTogether ) -> None :
122122 async with async_client .code_interpreter .with_streaming_response .execute (
0 commit comments