Skip to content

Commit 22b520b

Browse files
chore(internal): codegen related update
1 parent 7af966e commit 22b520b

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

tests/api_resources/classifications/test_universal.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class TestUniversal:
1818
parametrize = pytest.mark.parametrize("client", [False, True], indirect=True, ids=["loose", "strict"])
1919

20-
@pytest.mark.skip()
20+
@pytest.mark.skip(reason="Prism tests are disabled")
2121
@parametrize
2222
def test_method_create(self, client: Isaacus) -> None:
2323
universal = client.classifications.universal.create(
@@ -27,7 +27,7 @@ def test_method_create(self, client: Isaacus) -> None:
2727
)
2828
assert_matches_type(UniversalClassification, universal, path=["response"])
2929

30-
@pytest.mark.skip()
30+
@pytest.mark.skip(reason="Prism tests are disabled")
3131
@parametrize
3232
def test_method_create_with_all_params(self, client: Isaacus) -> None:
3333
universal = client.classifications.universal.create(
@@ -44,7 +44,7 @@ def test_method_create_with_all_params(self, client: Isaacus) -> None:
4444
)
4545
assert_matches_type(UniversalClassification, universal, path=["response"])
4646

47-
@pytest.mark.skip()
47+
@pytest.mark.skip(reason="Prism tests are disabled")
4848
@parametrize
4949
def test_raw_response_create(self, client: Isaacus) -> None:
5050
response = client.classifications.universal.with_raw_response.create(
@@ -58,7 +58,7 @@ def test_raw_response_create(self, client: Isaacus) -> None:
5858
universal = response.parse()
5959
assert_matches_type(UniversalClassification, universal, path=["response"])
6060

61-
@pytest.mark.skip()
61+
@pytest.mark.skip(reason="Prism tests are disabled")
6262
@parametrize
6363
def test_streaming_response_create(self, client: Isaacus) -> None:
6464
with client.classifications.universal.with_streaming_response.create(
@@ -80,7 +80,7 @@ class TestAsyncUniversal:
8080
"async_client", [False, True, {"http_client": "aiohttp"}], indirect=True, ids=["loose", "strict", "aiohttp"]
8181
)
8282

83-
@pytest.mark.skip()
83+
@pytest.mark.skip(reason="Prism tests are disabled")
8484
@parametrize
8585
async def test_method_create(self, async_client: AsyncIsaacus) -> None:
8686
universal = await async_client.classifications.universal.create(
@@ -90,7 +90,7 @@ async def test_method_create(self, async_client: AsyncIsaacus) -> None:
9090
)
9191
assert_matches_type(UniversalClassification, universal, path=["response"])
9292

93-
@pytest.mark.skip()
93+
@pytest.mark.skip(reason="Prism tests are disabled")
9494
@parametrize
9595
async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -> None:
9696
universal = await async_client.classifications.universal.create(
@@ -107,7 +107,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -
107107
)
108108
assert_matches_type(UniversalClassification, universal, path=["response"])
109109

110-
@pytest.mark.skip()
110+
@pytest.mark.skip(reason="Prism tests are disabled")
111111
@parametrize
112112
async def test_raw_response_create(self, async_client: AsyncIsaacus) -> None:
113113
response = await async_client.classifications.universal.with_raw_response.create(
@@ -121,7 +121,7 @@ async def test_raw_response_create(self, async_client: AsyncIsaacus) -> None:
121121
universal = await response.parse()
122122
assert_matches_type(UniversalClassification, universal, path=["response"])
123123

124-
@pytest.mark.skip()
124+
@pytest.mark.skip(reason="Prism tests are disabled")
125125
@parametrize
126126
async def test_streaming_response_create(self, async_client: AsyncIsaacus) -> None:
127127
async with async_client.classifications.universal.with_streaming_response.create(

tests/api_resources/extractions/test_qa.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class TestQa:
1818
parametrize = pytest.mark.parametrize("client", [False, True], indirect=True, ids=["loose", "strict"])
1919

20-
@pytest.mark.skip()
20+
@pytest.mark.skip(reason="Prism tests are disabled")
2121
@parametrize
2222
def test_method_create(self, client: Isaacus) -> None:
2323
qa = client.extractions.qa.create(
@@ -29,7 +29,7 @@ def test_method_create(self, client: Isaacus) -> None:
2929
)
3030
assert_matches_type(AnswerExtraction, qa, path=["response"])
3131

32-
@pytest.mark.skip()
32+
@pytest.mark.skip(reason="Prism tests are disabled")
3333
@parametrize
3434
def test_method_create_with_all_params(self, client: Isaacus) -> None:
3535
qa = client.extractions.qa.create(
@@ -48,7 +48,7 @@ def test_method_create_with_all_params(self, client: Isaacus) -> None:
4848
)
4949
assert_matches_type(AnswerExtraction, qa, path=["response"])
5050

51-
@pytest.mark.skip()
51+
@pytest.mark.skip(reason="Prism tests are disabled")
5252
@parametrize
5353
def test_raw_response_create(self, client: Isaacus) -> None:
5454
response = client.extractions.qa.with_raw_response.create(
@@ -64,7 +64,7 @@ def test_raw_response_create(self, client: Isaacus) -> None:
6464
qa = response.parse()
6565
assert_matches_type(AnswerExtraction, qa, path=["response"])
6666

67-
@pytest.mark.skip()
67+
@pytest.mark.skip(reason="Prism tests are disabled")
6868
@parametrize
6969
def test_streaming_response_create(self, client: Isaacus) -> None:
7070
with client.extractions.qa.with_streaming_response.create(
@@ -88,7 +88,7 @@ class TestAsyncQa:
8888
"async_client", [False, True, {"http_client": "aiohttp"}], indirect=True, ids=["loose", "strict", "aiohttp"]
8989
)
9090

91-
@pytest.mark.skip()
91+
@pytest.mark.skip(reason="Prism tests are disabled")
9292
@parametrize
9393
async def test_method_create(self, async_client: AsyncIsaacus) -> None:
9494
qa = await async_client.extractions.qa.create(
@@ -100,7 +100,7 @@ async def test_method_create(self, async_client: AsyncIsaacus) -> None:
100100
)
101101
assert_matches_type(AnswerExtraction, qa, path=["response"])
102102

103-
@pytest.mark.skip()
103+
@pytest.mark.skip(reason="Prism tests are disabled")
104104
@parametrize
105105
async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -> None:
106106
qa = await async_client.extractions.qa.create(
@@ -119,7 +119,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -
119119
)
120120
assert_matches_type(AnswerExtraction, qa, path=["response"])
121121

122-
@pytest.mark.skip()
122+
@pytest.mark.skip(reason="Prism tests are disabled")
123123
@parametrize
124124
async def test_raw_response_create(self, async_client: AsyncIsaacus) -> None:
125125
response = await async_client.extractions.qa.with_raw_response.create(
@@ -135,7 +135,7 @@ async def test_raw_response_create(self, async_client: AsyncIsaacus) -> None:
135135
qa = await response.parse()
136136
assert_matches_type(AnswerExtraction, qa, path=["response"])
137137

138-
@pytest.mark.skip()
138+
@pytest.mark.skip(reason="Prism tests are disabled")
139139
@parametrize
140140
async def test_streaming_response_create(self, async_client: AsyncIsaacus) -> None:
141141
async with async_client.extractions.qa.with_streaming_response.create(

tests/api_resources/test_rerankings.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class TestRerankings:
1818
parametrize = pytest.mark.parametrize("client", [False, True], indirect=True, ids=["loose", "strict"])
1919

20-
@pytest.mark.skip()
20+
@pytest.mark.skip(reason="Prism tests are disabled")
2121
@parametrize
2222
def test_method_create(self, client: Isaacus) -> None:
2323
reranking = client.rerankings.create(
@@ -33,7 +33,7 @@ def test_method_create(self, client: Isaacus) -> None:
3333
)
3434
assert_matches_type(Reranking, reranking, path=["response"])
3535

36-
@pytest.mark.skip()
36+
@pytest.mark.skip(reason="Prism tests are disabled")
3737
@parametrize
3838
def test_method_create_with_all_params(self, client: Isaacus) -> None:
3939
reranking = client.rerankings.create(
@@ -57,7 +57,7 @@ def test_method_create_with_all_params(self, client: Isaacus) -> None:
5757
)
5858
assert_matches_type(Reranking, reranking, path=["response"])
5959

60-
@pytest.mark.skip()
60+
@pytest.mark.skip(reason="Prism tests are disabled")
6161
@parametrize
6262
def test_raw_response_create(self, client: Isaacus) -> None:
6363
response = client.rerankings.with_raw_response.create(
@@ -77,7 +77,7 @@ def test_raw_response_create(self, client: Isaacus) -> None:
7777
reranking = response.parse()
7878
assert_matches_type(Reranking, reranking, path=["response"])
7979

80-
@pytest.mark.skip()
80+
@pytest.mark.skip(reason="Prism tests are disabled")
8181
@parametrize
8282
def test_streaming_response_create(self, client: Isaacus) -> None:
8383
with client.rerankings.with_streaming_response.create(
@@ -105,7 +105,7 @@ class TestAsyncRerankings:
105105
"async_client", [False, True, {"http_client": "aiohttp"}], indirect=True, ids=["loose", "strict", "aiohttp"]
106106
)
107107

108-
@pytest.mark.skip()
108+
@pytest.mark.skip(reason="Prism tests are disabled")
109109
@parametrize
110110
async def test_method_create(self, async_client: AsyncIsaacus) -> None:
111111
reranking = await async_client.rerankings.create(
@@ -121,7 +121,7 @@ async def test_method_create(self, async_client: AsyncIsaacus) -> None:
121121
)
122122
assert_matches_type(Reranking, reranking, path=["response"])
123123

124-
@pytest.mark.skip()
124+
@pytest.mark.skip(reason="Prism tests are disabled")
125125
@parametrize
126126
async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -> None:
127127
reranking = await async_client.rerankings.create(
@@ -145,7 +145,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIsaacus) -
145145
)
146146
assert_matches_type(Reranking, reranking, path=["response"])
147147

148-
@pytest.mark.skip()
148+
@pytest.mark.skip(reason="Prism tests are disabled")
149149
@parametrize
150150
async def test_raw_response_create(self, async_client: AsyncIsaacus) -> None:
151151
response = await async_client.rerankings.with_raw_response.create(
@@ -165,7 +165,7 @@ async def test_raw_response_create(self, async_client: AsyncIsaacus) -> None:
165165
reranking = await response.parse()
166166
assert_matches_type(Reranking, reranking, path=["response"])
167167

168-
@pytest.mark.skip()
168+
@pytest.mark.skip(reason="Prism tests are disabled")
169169
@parametrize
170170
async def test_streaming_response_create(self, async_client: AsyncIsaacus) -> None:
171171
async with async_client.rerankings.with_streaming_response.create(

0 commit comments

Comments
 (0)