Skip to content

Commit bdc155b

Browse files
JohnVillalovosnejch
authored andcommitted
test(cli): allow up to 30 seconds for a project export
Before we allowed a maximum of around 15 seconds for the project-export. Often times the CI was failing with this value. Change it to a maximum of around 30 seconds.
1 parent 930d4a2 commit bdc155b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/functional/cli/test_cli_projects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def project_export(project):
4040
time.sleep(0.5)
4141
export.refresh()
4242
count += 1
43-
if count == 30:
43+
if count >= 60:
4444
raise Exception("Project export taking too much time")
4545

4646
return export

0 commit comments

Comments
 (0)