Skip to content

Commit

Permalink
relax tests to adapt to CI download speed
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrofelder committed Oct 18, 2024
1 parent 660bfae commit 34fc79c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_unit/test_atlas_manager_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def test_update_atlas_confirmed(

with qtbot.waitSignal(
atlas_manager_view.update_atlas_confirmed,
timeout=150000, # assumes atlas can be updated in 2.5 minutes!
timeout=300000, # assumes atlas can be updated in 5 minutes!
) as update_atlas_confirmed_signal:
# replace with double-click on view?
model_index = atlas_manager_view.model().index(0, 0)
Expand Down Expand Up @@ -96,7 +96,7 @@ def test_download_confirmed_callback(atlas_manager_view, qtbot):

with qtbot.waitSignal(
atlas_manager_view.download_atlas_confirmed,
timeout=150000, # assumes atlas can be installed in 2.5 minutes!
timeout=300000, # assumes atlas can be installed in 5 minutes!
) as download_atlas_confirmed_signal:
model_index = atlas_manager_view.model().index(0, 0)
atlas_manager_view.setCurrentIndex(model_index)
Expand Down

0 comments on commit 34fc79c

Please sign in to comment.