Skip to content

Commit

Permalink
Increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Yngve S. Kristiansen authored and yngve-sk committed Jul 10, 2024
1 parent 30fb1b4 commit ed3ba44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit_tests/gui/test_restart_ensemble_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def _evaluate(coeffs, x):

qtbot.mouseClick(run_dialog.show_details_button, Qt.MouseButton.LeftButton)

qtbot.waitUntil(run_dialog.restart_button.isVisible, timeout=20000)
qtbot.waitUntil(run_dialog.restart_button.isVisible, timeout=60000)
qtbot.waitUntil(lambda: run_dialog._tab_widget.currentWidget() is not None)

# Assert that the number of boxes in the detailed view is
Expand Down Expand Up @@ -115,7 +115,7 @@ def handle_dialog():
write_poly_eval(failing_reals=failing_reals_second_try)
qtbot.mouseClick(run_dialog.restart_button, Qt.MouseButton.LeftButton)

qtbot.waitUntil(run_dialog.restart_button.isVisible, timeout=20000)
qtbot.waitUntil(run_dialog.restart_button.isVisible, timeout=60000)
qtbot.waitUntil(lambda: run_dialog._tab_widget.currentWidget() is not None)

# Assert that the number of boxes in the detailed view is
Expand Down Expand Up @@ -144,7 +144,7 @@ def handle_dialog():
write_poly_eval(failing_reals=failing_reals_third_try)
qtbot.mouseClick(run_dialog.restart_button, Qt.MouseButton.LeftButton)

qtbot.waitUntil(run_dialog.done_button.isVisible, timeout=20000)
qtbot.waitUntil(run_dialog.done_button.isVisible, timeout=60000)
qtbot.waitUntil(lambda: run_dialog._tab_widget.currentWidget() is not None)

# Assert that the number of boxes in the detailed view is
Expand Down

0 comments on commit ed3ba44

Please sign in to comment.