23
23
class TestApp :
24
24
parametrize = pytest .mark .parametrize ("client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
25
25
26
- @pytest .mark .skip ()
26
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
27
27
@parametrize
28
28
def test_method_get (self , client : Opencode ) -> None :
29
29
app = client .app .get ()
30
30
assert_matches_type (App , app , path = ["response" ])
31
31
32
- @pytest .mark .skip ()
32
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
33
33
@parametrize
34
34
def test_raw_response_get (self , client : Opencode ) -> None :
35
35
response = client .app .with_raw_response .get ()
@@ -39,7 +39,7 @@ def test_raw_response_get(self, client: Opencode) -> None:
39
39
app = response .parse ()
40
40
assert_matches_type (App , app , path = ["response" ])
41
41
42
- @pytest .mark .skip ()
42
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
43
43
@parametrize
44
44
def test_streaming_response_get (self , client : Opencode ) -> None :
45
45
with client .app .with_streaming_response .get () as response :
@@ -51,13 +51,13 @@ def test_streaming_response_get(self, client: Opencode) -> None:
51
51
52
52
assert cast (Any , response .is_closed ) is True
53
53
54
- @pytest .mark .skip ()
54
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
55
55
@parametrize
56
56
def test_method_init (self , client : Opencode ) -> None :
57
57
app = client .app .init ()
58
58
assert_matches_type (AppInitResponse , app , path = ["response" ])
59
59
60
- @pytest .mark .skip ()
60
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
61
61
@parametrize
62
62
def test_raw_response_init (self , client : Opencode ) -> None :
63
63
response = client .app .with_raw_response .init ()
@@ -67,7 +67,7 @@ def test_raw_response_init(self, client: Opencode) -> None:
67
67
app = response .parse ()
68
68
assert_matches_type (AppInitResponse , app , path = ["response" ])
69
69
70
- @pytest .mark .skip ()
70
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
71
71
@parametrize
72
72
def test_streaming_response_init (self , client : Opencode ) -> None :
73
73
with client .app .with_streaming_response .init () as response :
@@ -79,7 +79,7 @@ def test_streaming_response_init(self, client: Opencode) -> None:
79
79
80
80
assert cast (Any , response .is_closed ) is True
81
81
82
- @pytest .mark .skip ()
82
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
83
83
@parametrize
84
84
def test_method_log (self , client : Opencode ) -> None :
85
85
app = client .app .log (
@@ -89,7 +89,7 @@ def test_method_log(self, client: Opencode) -> None:
89
89
)
90
90
assert_matches_type (AppLogResponse , app , path = ["response" ])
91
91
92
- @pytest .mark .skip ()
92
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
93
93
@parametrize
94
94
def test_method_log_with_all_params (self , client : Opencode ) -> None :
95
95
app = client .app .log (
@@ -100,7 +100,7 @@ def test_method_log_with_all_params(self, client: Opencode) -> None:
100
100
)
101
101
assert_matches_type (AppLogResponse , app , path = ["response" ])
102
102
103
- @pytest .mark .skip ()
103
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
104
104
@parametrize
105
105
def test_raw_response_log (self , client : Opencode ) -> None :
106
106
response = client .app .with_raw_response .log (
@@ -114,7 +114,7 @@ def test_raw_response_log(self, client: Opencode) -> None:
114
114
app = response .parse ()
115
115
assert_matches_type (AppLogResponse , app , path = ["response" ])
116
116
117
- @pytest .mark .skip ()
117
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
118
118
@parametrize
119
119
def test_streaming_response_log (self , client : Opencode ) -> None :
120
120
with client .app .with_streaming_response .log (
@@ -130,13 +130,13 @@ def test_streaming_response_log(self, client: Opencode) -> None:
130
130
131
131
assert cast (Any , response .is_closed ) is True
132
132
133
- @pytest .mark .skip ()
133
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
134
134
@parametrize
135
135
def test_method_modes (self , client : Opencode ) -> None :
136
136
app = client .app .modes ()
137
137
assert_matches_type (AppModesResponse , app , path = ["response" ])
138
138
139
- @pytest .mark .skip ()
139
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
140
140
@parametrize
141
141
def test_raw_response_modes (self , client : Opencode ) -> None :
142
142
response = client .app .with_raw_response .modes ()
@@ -146,7 +146,7 @@ def test_raw_response_modes(self, client: Opencode) -> None:
146
146
app = response .parse ()
147
147
assert_matches_type (AppModesResponse , app , path = ["response" ])
148
148
149
- @pytest .mark .skip ()
149
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
150
150
@parametrize
151
151
def test_streaming_response_modes (self , client : Opencode ) -> None :
152
152
with client .app .with_streaming_response .modes () as response :
@@ -158,13 +158,13 @@ def test_streaming_response_modes(self, client: Opencode) -> None:
158
158
159
159
assert cast (Any , response .is_closed ) is True
160
160
161
- @pytest .mark .skip ()
161
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
162
162
@parametrize
163
163
def test_method_providers (self , client : Opencode ) -> None :
164
164
app = client .app .providers ()
165
165
assert_matches_type (AppProvidersResponse , app , path = ["response" ])
166
166
167
- @pytest .mark .skip ()
167
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
168
168
@parametrize
169
169
def test_raw_response_providers (self , client : Opencode ) -> None :
170
170
response = client .app .with_raw_response .providers ()
@@ -174,7 +174,7 @@ def test_raw_response_providers(self, client: Opencode) -> None:
174
174
app = response .parse ()
175
175
assert_matches_type (AppProvidersResponse , app , path = ["response" ])
176
176
177
- @pytest .mark .skip ()
177
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
178
178
@parametrize
179
179
def test_streaming_response_providers (self , client : Opencode ) -> None :
180
180
with client .app .with_streaming_response .providers () as response :
@@ -192,13 +192,13 @@ class TestAsyncApp:
192
192
"async_client" , [False , True , {"http_client" : "aiohttp" }], indirect = True , ids = ["loose" , "strict" , "aiohttp" ]
193
193
)
194
194
195
- @pytest .mark .skip ()
195
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
196
196
@parametrize
197
197
async def test_method_get (self , async_client : AsyncOpencode ) -> None :
198
198
app = await async_client .app .get ()
199
199
assert_matches_type (App , app , path = ["response" ])
200
200
201
- @pytest .mark .skip ()
201
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
202
202
@parametrize
203
203
async def test_raw_response_get (self , async_client : AsyncOpencode ) -> None :
204
204
response = await async_client .app .with_raw_response .get ()
@@ -208,7 +208,7 @@ async def test_raw_response_get(self, async_client: AsyncOpencode) -> None:
208
208
app = await response .parse ()
209
209
assert_matches_type (App , app , path = ["response" ])
210
210
211
- @pytest .mark .skip ()
211
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
212
212
@parametrize
213
213
async def test_streaming_response_get (self , async_client : AsyncOpencode ) -> None :
214
214
async with async_client .app .with_streaming_response .get () as response :
@@ -220,13 +220,13 @@ async def test_streaming_response_get(self, async_client: AsyncOpencode) -> None
220
220
221
221
assert cast (Any , response .is_closed ) is True
222
222
223
- @pytest .mark .skip ()
223
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
224
224
@parametrize
225
225
async def test_method_init (self , async_client : AsyncOpencode ) -> None :
226
226
app = await async_client .app .init ()
227
227
assert_matches_type (AppInitResponse , app , path = ["response" ])
228
228
229
- @pytest .mark .skip ()
229
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
230
230
@parametrize
231
231
async def test_raw_response_init (self , async_client : AsyncOpencode ) -> None :
232
232
response = await async_client .app .with_raw_response .init ()
@@ -236,7 +236,7 @@ async def test_raw_response_init(self, async_client: AsyncOpencode) -> None:
236
236
app = await response .parse ()
237
237
assert_matches_type (AppInitResponse , app , path = ["response" ])
238
238
239
- @pytest .mark .skip ()
239
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
240
240
@parametrize
241
241
async def test_streaming_response_init (self , async_client : AsyncOpencode ) -> None :
242
242
async with async_client .app .with_streaming_response .init () as response :
@@ -248,7 +248,7 @@ async def test_streaming_response_init(self, async_client: AsyncOpencode) -> Non
248
248
249
249
assert cast (Any , response .is_closed ) is True
250
250
251
- @pytest .mark .skip ()
251
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
252
252
@parametrize
253
253
async def test_method_log (self , async_client : AsyncOpencode ) -> None :
254
254
app = await async_client .app .log (
@@ -258,7 +258,7 @@ async def test_method_log(self, async_client: AsyncOpencode) -> None:
258
258
)
259
259
assert_matches_type (AppLogResponse , app , path = ["response" ])
260
260
261
- @pytest .mark .skip ()
261
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
262
262
@parametrize
263
263
async def test_method_log_with_all_params (self , async_client : AsyncOpencode ) -> None :
264
264
app = await async_client .app .log (
@@ -269,7 +269,7 @@ async def test_method_log_with_all_params(self, async_client: AsyncOpencode) ->
269
269
)
270
270
assert_matches_type (AppLogResponse , app , path = ["response" ])
271
271
272
- @pytest .mark .skip ()
272
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
273
273
@parametrize
274
274
async def test_raw_response_log (self , async_client : AsyncOpencode ) -> None :
275
275
response = await async_client .app .with_raw_response .log (
@@ -283,7 +283,7 @@ async def test_raw_response_log(self, async_client: AsyncOpencode) -> None:
283
283
app = await response .parse ()
284
284
assert_matches_type (AppLogResponse , app , path = ["response" ])
285
285
286
- @pytest .mark .skip ()
286
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
287
287
@parametrize
288
288
async def test_streaming_response_log (self , async_client : AsyncOpencode ) -> None :
289
289
async with async_client .app .with_streaming_response .log (
@@ -299,13 +299,13 @@ async def test_streaming_response_log(self, async_client: AsyncOpencode) -> None
299
299
300
300
assert cast (Any , response .is_closed ) is True
301
301
302
- @pytest .mark .skip ()
302
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
303
303
@parametrize
304
304
async def test_method_modes (self , async_client : AsyncOpencode ) -> None :
305
305
app = await async_client .app .modes ()
306
306
assert_matches_type (AppModesResponse , app , path = ["response" ])
307
307
308
- @pytest .mark .skip ()
308
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
309
309
@parametrize
310
310
async def test_raw_response_modes (self , async_client : AsyncOpencode ) -> None :
311
311
response = await async_client .app .with_raw_response .modes ()
@@ -315,7 +315,7 @@ async def test_raw_response_modes(self, async_client: AsyncOpencode) -> None:
315
315
app = await response .parse ()
316
316
assert_matches_type (AppModesResponse , app , path = ["response" ])
317
317
318
- @pytest .mark .skip ()
318
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
319
319
@parametrize
320
320
async def test_streaming_response_modes (self , async_client : AsyncOpencode ) -> None :
321
321
async with async_client .app .with_streaming_response .modes () as response :
@@ -327,13 +327,13 @@ async def test_streaming_response_modes(self, async_client: AsyncOpencode) -> No
327
327
328
328
assert cast (Any , response .is_closed ) is True
329
329
330
- @pytest .mark .skip ()
330
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
331
331
@parametrize
332
332
async def test_method_providers (self , async_client : AsyncOpencode ) -> None :
333
333
app = await async_client .app .providers ()
334
334
assert_matches_type (AppProvidersResponse , app , path = ["response" ])
335
335
336
- @pytest .mark .skip ()
336
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
337
337
@parametrize
338
338
async def test_raw_response_providers (self , async_client : AsyncOpencode ) -> None :
339
339
response = await async_client .app .with_raw_response .providers ()
@@ -343,7 +343,7 @@ async def test_raw_response_providers(self, async_client: AsyncOpencode) -> None
343
343
app = await response .parse ()
344
344
assert_matches_type (AppProvidersResponse , app , path = ["response" ])
345
345
346
- @pytest .mark .skip ()
346
+ @pytest .mark .skip (reason = "Prism tests are disabled" )
347
347
@parametrize
348
348
async def test_streaming_response_providers (self , async_client : AsyncOpencode ) -> None :
349
349
async with async_client .app .with_streaming_response .providers () as response :
0 commit comments