Commit bdc155b7 authored by John L. Villalovos's avatar John L. Villalovos Committed by Nejc Habjan
Browse files

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.
parent 930d4a21
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ def project_export(project):
        time.sleep(0.5)
        export.refresh()
        count += 1
        if count == 30:
        if count >= 60:
            raise Exception("Project export taking too much time")

    return export