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