Skip to content

Commit

Permalink
feat: adding skip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Stainless Bot committed May 14, 2024
1 parent 8099165 commit af3bc48
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/api_resources/test_documents.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit af3bc48

Please sign in to comment.