diff --git a/.stats.yml b/.stats.yml index 40d23e1b2..d9a0a6044 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 28 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-1b1dd59a8326d972ab26f979561252cda4bcaeeb0cc7eb1ab2b8fe2522f90ec0.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-d5b31b4bbf540f07391766a9217f0dc872e3c9015dc2282b7b346f6594acbe0c.yml diff --git a/tests/api_resources/test_devboxes.py b/tests/api_resources/test_devboxes.py index 5d48d1830..2989ccb88 100644 --- a/tests/api_resources/test_devboxes.py +++ b/tests/api_resources/test_devboxes.py @@ -241,6 +241,7 @@ def test_streaming_response_disk_snapshots(self, client: Runloop) -> None: assert cast(Any, response.is_closed) is True + @pytest.mark.skip(reason="prism can't support octet") @parametrize @pytest.mark.respx(base_url=base_url) 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) -> assert cast(Any, devbox.is_closed) is True assert isinstance(devbox, BinaryAPIResponse) + @pytest.mark.skip(reason="prism can't support octet") @parametrize @pytest.mark.respx(base_url=base_url) 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 assert devbox.json() == {"foo": "bar"} assert isinstance(devbox, BinaryAPIResponse) + @pytest.mark.skip(reason="prism can't support octet") @parametrize @pytest.mark.respx(base_url=base_url) 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 assert cast(Any, devbox.is_closed) is True + @pytest.mark.skip(reason="prism can't support octet") @parametrize @pytest.mark.respx(base_url=base_url) 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 assert cast(Any, response.is_closed) is True + @pytest.mark.skip(reason="prism can't support octet") @parametrize @pytest.mark.respx(base_url=base_url) 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 assert cast(Any, devbox.is_closed) is True assert isinstance(devbox, AsyncBinaryAPIResponse) + @pytest.mark.skip(reason="prism can't support octet") @parametrize @pytest.mark.respx(base_url=base_url) 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 assert await devbox.json() == {"foo": "bar"} assert isinstance(devbox, AsyncBinaryAPIResponse) + @pytest.mark.skip(reason="prism can't support octet") @parametrize @pytest.mark.respx(base_url=base_url) 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 assert cast(Any, devbox.is_closed) is True + @pytest.mark.skip(reason="prism can't support octet") @parametrize @pytest.mark.respx(base_url=base_url) async def test_path_params_download_file(self, async_client: AsyncRunloop) -> None: