@@ -241,6 +241,7 @@ def test_streaming_response_disk_snapshots(self, client: Runloop) -> None:
241241
242242 assert cast (Any , response .is_closed ) is True
243243
244+ @pytest .mark .skip (reason = "prism can't support octet" )
244245 @parametrize
245246 @pytest .mark .respx (base_url = base_url )
246247 def test_method_download_file (self , client : Runloop , respx_mock : MockRouter ) -> None :
@@ -254,6 +255,7 @@ def test_method_download_file(self, client: Runloop, respx_mock: MockRouter) ->
254255 assert cast (Any , devbox .is_closed ) is True
255256 assert isinstance (devbox , BinaryAPIResponse )
256257
258+ @pytest .mark .skip (reason = "prism can't support octet" )
257259 @parametrize
258260 @pytest .mark .respx (base_url = base_url )
259261 def test_raw_response_download_file (self , client : Runloop , respx_mock : MockRouter ) -> None :
@@ -269,6 +271,7 @@ def test_raw_response_download_file(self, client: Runloop, respx_mock: MockRoute
269271 assert devbox .json () == {"foo" : "bar" }
270272 assert isinstance (devbox , BinaryAPIResponse )
271273
274+ @pytest .mark .skip (reason = "prism can't support octet" )
272275 @parametrize
273276 @pytest .mark .respx (base_url = base_url )
274277 def test_streaming_response_download_file (self , client : Runloop , respx_mock : MockRouter ) -> None :
@@ -286,6 +289,7 @@ def test_streaming_response_download_file(self, client: Runloop, respx_mock: Moc
286289
287290 assert cast (Any , devbox .is_closed ) is True
288291
292+ @pytest .mark .skip (reason = "prism can't support octet" )
289293 @parametrize
290294 @pytest .mark .respx (base_url = base_url )
291295 def test_path_params_download_file (self , client : Runloop ) -> None :
@@ -783,6 +787,7 @@ async def test_streaming_response_disk_snapshots(self, async_client: AsyncRunloo
783787
784788 assert cast (Any , response .is_closed ) is True
785789
790+ @pytest .mark .skip (reason = "prism can't support octet" )
786791 @parametrize
787792 @pytest .mark .respx (base_url = base_url )
788793 async def test_method_download_file (self , async_client : AsyncRunloop , respx_mock : MockRouter ) -> None :
@@ -796,6 +801,7 @@ async def test_method_download_file(self, async_client: AsyncRunloop, respx_mock
796801 assert cast (Any , devbox .is_closed ) is True
797802 assert isinstance (devbox , AsyncBinaryAPIResponse )
798803
804+ @pytest .mark .skip (reason = "prism can't support octet" )
799805 @parametrize
800806 @pytest .mark .respx (base_url = base_url )
801807 async def test_raw_response_download_file (self , async_client : AsyncRunloop , respx_mock : MockRouter ) -> None :
@@ -811,6 +817,7 @@ async def test_raw_response_download_file(self, async_client: AsyncRunloop, resp
811817 assert await devbox .json () == {"foo" : "bar" }
812818 assert isinstance (devbox , AsyncBinaryAPIResponse )
813819
820+ @pytest .mark .skip (reason = "prism can't support octet" )
814821 @parametrize
815822 @pytest .mark .respx (base_url = base_url )
816823 async def test_streaming_response_download_file (self , async_client : AsyncRunloop , respx_mock : MockRouter ) -> None :
@@ -828,6 +835,7 @@ async def test_streaming_response_download_file(self, async_client: AsyncRunloop
828835
829836 assert cast (Any , devbox .is_closed ) is True
830837
838+ @pytest .mark .skip (reason = "prism can't support octet" )
831839 @parametrize
832840 @pytest .mark .respx (base_url = base_url )
833841 async def test_path_params_download_file (self , async_client : AsyncRunloop ) -> None :
0 commit comments