From af3bc4824d42772781053b67dd1d2b016668a63f Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Tue, 14 May 2024 17:10:52 +0000 Subject: [PATCH] feat: adding skip tests --- tests/api_resources/test_documents.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/api_resources/test_documents.py b/tests/api_resources/test_documents.py index 9c5e5c96..9aa9d4c2 100644 --- a/tests/api_resources/test_documents.py +++ b/tests/api_resources/test_documents.py @@ -119,6 +119,7 @@ def test_path_params_download(self, client: Structify) -> None: ) @parametrize + @pytest.mark.skip(reason="stainless doesn't support this yet.") def test_method_upload(self, client: Structify) -> None: document = client.documents.upload( doctype="Text", @@ -128,6 +129,7 @@ def test_method_upload(self, client: Structify) -> None: assert document is None @parametrize + @pytest.mark.skip(reason="stainless doesn't support this yet.") def test_raw_response_upload(self, client: Structify) -> None: response = client.documents.with_raw_response.upload( doctype="Text", @@ -141,6 +143,7 @@ def test_raw_response_upload(self, client: Structify) -> None: assert document is None @parametrize + @pytest.mark.skip(reason="stainless doesn't support this yet.") def test_streaming_response_upload(self, client: Structify) -> None: with client.documents.with_streaming_response.upload( doctype="Text",