@@ -117,13 +117,15 @@ def test_path_params_retrieve(self, client: OpenAI) -> None:
117
117
fine_tuned_model_checkpoint = "" ,
118
118
)
119
119
120
+ @pytest .mark .skip (reason = "OpenAPI spec is slightly incorrect" )
120
121
@parametrize
121
122
def test_method_delete (self , client : OpenAI ) -> None :
122
123
permission = client .fine_tuning .checkpoints .permissions .delete (
123
124
"ft:gpt-4o-mini-2024-07-18:org:weather:B7R9VjQd" ,
124
125
)
125
126
assert_matches_type (PermissionDeleteResponse , permission , path = ["response" ])
126
127
128
+ @pytest .mark .skip (reason = "OpenAPI spec is slightly incorrect" )
127
129
@parametrize
128
130
def test_raw_response_delete (self , client : OpenAI ) -> None :
129
131
response = client .fine_tuning .checkpoints .permissions .with_raw_response .delete (
@@ -135,6 +137,7 @@ def test_raw_response_delete(self, client: OpenAI) -> None:
135
137
permission = response .parse ()
136
138
assert_matches_type (PermissionDeleteResponse , permission , path = ["response" ])
137
139
140
+ @pytest .mark .skip (reason = "OpenAPI spec is slightly incorrect" )
138
141
@parametrize
139
142
def test_streaming_response_delete (self , client : OpenAI ) -> None :
140
143
with client .fine_tuning .checkpoints .permissions .with_streaming_response .delete (
@@ -148,6 +151,7 @@ def test_streaming_response_delete(self, client: OpenAI) -> None:
148
151
149
152
assert cast (Any , response .is_closed ) is True
150
153
154
+ @pytest .mark .skip (reason = "OpenAPI spec is slightly incorrect" )
151
155
@parametrize
152
156
def test_path_params_delete (self , client : OpenAI ) -> None :
153
157
with pytest .raises (
@@ -256,13 +260,15 @@ async def test_path_params_retrieve(self, async_client: AsyncOpenAI) -> None:
256
260
fine_tuned_model_checkpoint = "" ,
257
261
)
258
262
263
+ @pytest .mark .skip (reason = "OpenAPI spec is slightly incorrect" )
259
264
@parametrize
260
265
async def test_method_delete (self , async_client : AsyncOpenAI ) -> None :
261
266
permission = await async_client .fine_tuning .checkpoints .permissions .delete (
262
267
"ft:gpt-4o-mini-2024-07-18:org:weather:B7R9VjQd" ,
263
268
)
264
269
assert_matches_type (PermissionDeleteResponse , permission , path = ["response" ])
265
270
271
+ @pytest .mark .skip (reason = "OpenAPI spec is slightly incorrect" )
266
272
@parametrize
267
273
async def test_raw_response_delete (self , async_client : AsyncOpenAI ) -> None :
268
274
response = await async_client .fine_tuning .checkpoints .permissions .with_raw_response .delete (
@@ -274,6 +280,7 @@ async def test_raw_response_delete(self, async_client: AsyncOpenAI) -> None:
274
280
permission = response .parse ()
275
281
assert_matches_type (PermissionDeleteResponse , permission , path = ["response" ])
276
282
283
+ @pytest .mark .skip (reason = "OpenAPI spec is slightly incorrect" )
277
284
@parametrize
278
285
async def test_streaming_response_delete (self , async_client : AsyncOpenAI ) -> None :
279
286
async with async_client .fine_tuning .checkpoints .permissions .with_streaming_response .delete (
@@ -287,6 +294,7 @@ async def test_streaming_response_delete(self, async_client: AsyncOpenAI) -> Non
287
294
288
295
assert cast (Any , response .is_closed ) is True
289
296
297
+ @pytest .mark .skip (reason = "OpenAPI spec is slightly incorrect" )
290
298
@parametrize
291
299
async def test_path_params_delete (self , async_client : AsyncOpenAI ) -> None :
292
300
with pytest .raises (
0 commit comments