@@ -34,7 +34,6 @@ def admin_auth_headers():
34
34
35
35
36
36
@pytest .fixture (scope = "session" )
37
- @pytest .mark .timeout (1200 )
38
37
def default_org_id (admin_auth_headers ):
39
38
while True :
40
39
r = requests .get (f"{ API_PREFIX } /orgs" , headers = admin_auth_headers )
@@ -49,7 +48,6 @@ def default_org_id(admin_auth_headers):
49
48
50
49
51
50
@pytest .fixture (scope = "session" )
52
- @pytest .mark .timeout (1200 )
53
51
def crawler_auth_headers (admin_auth_headers , default_org_id ):
54
52
requests .post (
55
53
f"{ API_PREFIX } /orgs/{ default_org_id } /add-user" ,
@@ -75,7 +73,6 @@ def crawler_auth_headers(admin_auth_headers, default_org_id):
75
73
76
74
77
75
@pytest .fixture (scope = "session" )
78
- @pytest .mark .timeout (1200 )
79
76
def crawl_id_wr (admin_auth_headers , default_org_id ):
80
77
# Start crawl.
81
78
crawl_data = {
@@ -108,7 +105,6 @@ def crawl_id_wr(admin_auth_headers, default_org_id):
108
105
109
106
110
107
@pytest .fixture (scope = "session" )
111
- @pytest .mark .timeout (1200 )
112
108
def crawl_id_wr_specs (admin_auth_headers , default_org_id ):
113
109
# Start crawl.
114
110
crawl_data = {
@@ -141,7 +137,6 @@ def crawl_id_wr_specs(admin_auth_headers, default_org_id):
141
137
142
138
143
139
@pytest .fixture (scope = "session" )
144
- @pytest .mark .timeout (1200 )
145
140
def crawl_config_info (admin_auth_headers , default_org_id ):
146
141
# Start crawl.
147
142
crawl_data = {
@@ -187,7 +182,6 @@ def crawl_config_info(admin_auth_headers, default_org_id):
187
182
188
183
189
184
@pytest .fixture (scope = "session" )
190
- @pytest .mark .timeout (1200 )
191
185
def large_crawl_id (admin_auth_headers , default_org_id ):
192
186
# Start crawl
193
187
crawl_data = {
@@ -224,7 +218,6 @@ def large_crawl_id(admin_auth_headers, default_org_id):
224
218
225
219
226
220
@pytest .fixture (scope = "session" )
227
- @pytest .mark .timeout (1200 )
228
221
def large_crawl_finished (admin_auth_headers , default_org_id , large_crawl_id ):
229
222
# Wait for crawl to complete
230
223
while True :
@@ -241,7 +234,6 @@ def large_crawl_finished(admin_auth_headers, default_org_id, large_crawl_id):
241
234
242
235
243
236
@pytest .fixture (scope = "session" )
244
- @pytest .mark .timeout (1200 )
245
237
def timeout_crawl (admin_auth_headers , default_org_id ):
246
238
# Start crawl
247
239
crawl_data = {
@@ -264,7 +256,6 @@ def timeout_crawl(admin_auth_headers, default_org_id):
264
256
265
257
266
258
@pytest .fixture (scope = "session" )
267
- @pytest .mark .timeout (1200 )
268
259
def max_crawl_size_crawl_id (admin_auth_headers , default_org_id ):
269
260
# Start crawl
270
261
crawl_data = {
@@ -289,7 +280,6 @@ def max_crawl_size_crawl_id(admin_auth_headers, default_org_id):
289
280
290
281
291
282
@pytest .fixture (scope = "session" )
292
- @pytest .mark .timeout (1200 )
293
283
def error_crawl_id (admin_auth_headers , default_org_id ):
294
284
crawl_data = {
295
285
"runNow" : True ,
@@ -322,7 +312,6 @@ def error_crawl_id(admin_auth_headers, default_org_id):
322
312
323
313
324
314
@pytest .fixture (scope = "session" )
325
- @pytest .mark .timeout (1200 )
326
315
def org_with_quotas (admin_auth_headers ):
327
316
name = "Quota Org " + datetime .datetime .utcnow ().isoformat ()
328
317
r = requests .post (
@@ -334,7 +323,6 @@ def org_with_quotas(admin_auth_headers):
334
323
335
324
336
325
@pytest .fixture (scope = "session" )
337
- @pytest .mark .timeout (1200 )
338
326
def deleted_crawl_id (admin_auth_headers , default_org_id ):
339
327
# Start crawl.
340
328
crawl_data = {
0 commit comments