21
21
class TestExecutions :
22
22
parametrize = pytest .mark .parametrize ("client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
23
23
24
+ @pytest .mark .skip ()
24
25
@parametrize
25
26
def test_method_retrieve (self , client : Gitpod ) -> None :
26
27
execution = client .environments .automations .tasks .executions .retrieve ()
27
28
assert_matches_type (ExecutionRetrieveResponse , execution , path = ["response" ])
28
29
30
+ @pytest .mark .skip ()
29
31
@parametrize
30
32
def test_method_retrieve_with_all_params (self , client : Gitpod ) -> None :
31
33
execution = client .environments .automations .tasks .executions .retrieve (
32
34
id = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e" ,
33
35
)
34
36
assert_matches_type (ExecutionRetrieveResponse , execution , path = ["response" ])
35
37
38
+ @pytest .mark .skip ()
36
39
@parametrize
37
40
def test_raw_response_retrieve (self , client : Gitpod ) -> None :
38
41
response = client .environments .automations .tasks .executions .with_raw_response .retrieve ()
@@ -42,6 +45,7 @@ def test_raw_response_retrieve(self, client: Gitpod) -> None:
42
45
execution = response .parse ()
43
46
assert_matches_type (ExecutionRetrieveResponse , execution , path = ["response" ])
44
47
48
+ @pytest .mark .skip ()
45
49
@parametrize
46
50
def test_streaming_response_retrieve (self , client : Gitpod ) -> None :
47
51
with client .environments .automations .tasks .executions .with_streaming_response .retrieve () as response :
@@ -53,11 +57,13 @@ def test_streaming_response_retrieve(self, client: Gitpod) -> None:
53
57
54
58
assert cast (Any , response .is_closed ) is True
55
59
60
+ @pytest .mark .skip ()
56
61
@parametrize
57
62
def test_method_list (self , client : Gitpod ) -> None :
58
63
execution = client .environments .automations .tasks .executions .list ()
59
64
assert_matches_type (SyncTaskExecutionsPage [ExecutionListResponse ], execution , path = ["response" ])
60
65
66
+ @pytest .mark .skip ()
61
67
@parametrize
62
68
def test_method_list_with_all_params (self , client : Gitpod ) -> None :
63
69
execution = client .environments .automations .tasks .executions .list (
@@ -76,6 +82,7 @@ def test_method_list_with_all_params(self, client: Gitpod) -> None:
76
82
)
77
83
assert_matches_type (SyncTaskExecutionsPage [ExecutionListResponse ], execution , path = ["response" ])
78
84
85
+ @pytest .mark .skip ()
79
86
@parametrize
80
87
def test_raw_response_list (self , client : Gitpod ) -> None :
81
88
response = client .environments .automations .tasks .executions .with_raw_response .list ()
@@ -85,6 +92,7 @@ def test_raw_response_list(self, client: Gitpod) -> None:
85
92
execution = response .parse ()
86
93
assert_matches_type (SyncTaskExecutionsPage [ExecutionListResponse ], execution , path = ["response" ])
87
94
95
+ @pytest .mark .skip ()
88
96
@parametrize
89
97
def test_streaming_response_list (self , client : Gitpod ) -> None :
90
98
with client .environments .automations .tasks .executions .with_streaming_response .list () as response :
@@ -96,18 +104,21 @@ def test_streaming_response_list(self, client: Gitpod) -> None:
96
104
97
105
assert cast (Any , response .is_closed ) is True
98
106
107
+ @pytest .mark .skip ()
99
108
@parametrize
100
109
def test_method_stop (self , client : Gitpod ) -> None :
101
110
execution = client .environments .automations .tasks .executions .stop ()
102
111
assert_matches_type (object , execution , path = ["response" ])
103
112
113
+ @pytest .mark .skip ()
104
114
@parametrize
105
115
def test_method_stop_with_all_params (self , client : Gitpod ) -> None :
106
116
execution = client .environments .automations .tasks .executions .stop (
107
117
id = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e" ,
108
118
)
109
119
assert_matches_type (object , execution , path = ["response" ])
110
120
121
+ @pytest .mark .skip ()
111
122
@parametrize
112
123
def test_raw_response_stop (self , client : Gitpod ) -> None :
113
124
response = client .environments .automations .tasks .executions .with_raw_response .stop ()
@@ -117,6 +128,7 @@ def test_raw_response_stop(self, client: Gitpod) -> None:
117
128
execution = response .parse ()
118
129
assert_matches_type (object , execution , path = ["response" ])
119
130
131
+ @pytest .mark .skip ()
120
132
@parametrize
121
133
def test_streaming_response_stop (self , client : Gitpod ) -> None :
122
134
with client .environments .automations .tasks .executions .with_streaming_response .stop () as response :
@@ -132,18 +144,21 @@ def test_streaming_response_stop(self, client: Gitpod) -> None:
132
144
class TestAsyncExecutions :
133
145
parametrize = pytest .mark .parametrize ("async_client" , [False , True ], indirect = True , ids = ["loose" , "strict" ])
134
146
147
+ @pytest .mark .skip ()
135
148
@parametrize
136
149
async def test_method_retrieve (self , async_client : AsyncGitpod ) -> None :
137
150
execution = await async_client .environments .automations .tasks .executions .retrieve ()
138
151
assert_matches_type (ExecutionRetrieveResponse , execution , path = ["response" ])
139
152
153
+ @pytest .mark .skip ()
140
154
@parametrize
141
155
async def test_method_retrieve_with_all_params (self , async_client : AsyncGitpod ) -> None :
142
156
execution = await async_client .environments .automations .tasks .executions .retrieve (
143
157
id = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e" ,
144
158
)
145
159
assert_matches_type (ExecutionRetrieveResponse , execution , path = ["response" ])
146
160
161
+ @pytest .mark .skip ()
147
162
@parametrize
148
163
async def test_raw_response_retrieve (self , async_client : AsyncGitpod ) -> None :
149
164
response = await async_client .environments .automations .tasks .executions .with_raw_response .retrieve ()
@@ -153,6 +168,7 @@ async def test_raw_response_retrieve(self, async_client: AsyncGitpod) -> None:
153
168
execution = await response .parse ()
154
169
assert_matches_type (ExecutionRetrieveResponse , execution , path = ["response" ])
155
170
171
+ @pytest .mark .skip ()
156
172
@parametrize
157
173
async def test_streaming_response_retrieve (self , async_client : AsyncGitpod ) -> None :
158
174
async with (
@@ -166,11 +182,13 @@ async def test_streaming_response_retrieve(self, async_client: AsyncGitpod) -> N
166
182
167
183
assert cast (Any , response .is_closed ) is True
168
184
185
+ @pytest .mark .skip ()
169
186
@parametrize
170
187
async def test_method_list (self , async_client : AsyncGitpod ) -> None :
171
188
execution = await async_client .environments .automations .tasks .executions .list ()
172
189
assert_matches_type (AsyncTaskExecutionsPage [ExecutionListResponse ], execution , path = ["response" ])
173
190
191
+ @pytest .mark .skip ()
174
192
@parametrize
175
193
async def test_method_list_with_all_params (self , async_client : AsyncGitpod ) -> None :
176
194
execution = await async_client .environments .automations .tasks .executions .list (
@@ -189,6 +207,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncGitpod) -> N
189
207
)
190
208
assert_matches_type (AsyncTaskExecutionsPage [ExecutionListResponse ], execution , path = ["response" ])
191
209
210
+ @pytest .mark .skip ()
192
211
@parametrize
193
212
async def test_raw_response_list (self , async_client : AsyncGitpod ) -> None :
194
213
response = await async_client .environments .automations .tasks .executions .with_raw_response .list ()
@@ -198,6 +217,7 @@ async def test_raw_response_list(self, async_client: AsyncGitpod) -> None:
198
217
execution = await response .parse ()
199
218
assert_matches_type (AsyncTaskExecutionsPage [ExecutionListResponse ], execution , path = ["response" ])
200
219
220
+ @pytest .mark .skip ()
201
221
@parametrize
202
222
async def test_streaming_response_list (self , async_client : AsyncGitpod ) -> None :
203
223
async with async_client .environments .automations .tasks .executions .with_streaming_response .list () as response :
@@ -209,18 +229,21 @@ async def test_streaming_response_list(self, async_client: AsyncGitpod) -> None:
209
229
210
230
assert cast (Any , response .is_closed ) is True
211
231
232
+ @pytest .mark .skip ()
212
233
@parametrize
213
234
async def test_method_stop (self , async_client : AsyncGitpod ) -> None :
214
235
execution = await async_client .environments .automations .tasks .executions .stop ()
215
236
assert_matches_type (object , execution , path = ["response" ])
216
237
238
+ @pytest .mark .skip ()
217
239
@parametrize
218
240
async def test_method_stop_with_all_params (self , async_client : AsyncGitpod ) -> None :
219
241
execution = await async_client .environments .automations .tasks .executions .stop (
220
242
id = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e" ,
221
243
)
222
244
assert_matches_type (object , execution , path = ["response" ])
223
245
246
+ @pytest .mark .skip ()
224
247
@parametrize
225
248
async def test_raw_response_stop (self , async_client : AsyncGitpod ) -> None :
226
249
response = await async_client .environments .automations .tasks .executions .with_raw_response .stop ()
@@ -230,6 +253,7 @@ async def test_raw_response_stop(self, async_client: AsyncGitpod) -> None:
230
253
execution = await response .parse ()
231
254
assert_matches_type (object , execution , path = ["response" ])
232
255
256
+ @pytest .mark .skip ()
233
257
@parametrize
234
258
async def test_streaming_response_stop (self , async_client : AsyncGitpod ) -> None :
235
259
async with async_client .environments .automations .tasks .executions .with_streaming_response .stop () as response :
0 commit comments