@@ -101,7 +101,7 @@ def test_v18(page: Page):
101101
102102
103103# Skip this test if in the CI
104- @pytest .mark .skipif (ci , reason = "Works locally but fails in the CI for some reason " )
104+ @pytest .mark .skipif (ci , reason = "Works locally but fails in the CI because of CELERY_TASK_ALWAYS_EAGER = True " )
105105def test_v2_multiTask (page : Page ) -> None :
106106 page .goto ("/" )
107107 page .get_by_role ("link" , name = " Benchmarks/Competitions" ).click ()
@@ -139,7 +139,7 @@ def test_v2_multiTask(page: Page) -> None:
139139 ).to_be_visible ()
140140 # The ID on the leaderboard can be one of the children instead of the parent so we try them all
141141 found = False
142- for count in range (0 , 4 ):
142+ for count in range (0 , 5 ):
143143 try :
144144 submission_ID_str = int (submission_Id [0 ]) + count
145145 logger .info ("Looked for ID : " + str (submission_ID_str ))
@@ -155,7 +155,7 @@ def test_v2_multiTask(page: Page) -> None:
155155
156156
157157# Skip this test if in the CI
158- @pytest .mark .skipif (ci , reason = "Works locally but fails in the CI for some reason " )
158+ @pytest .mark .skipif (ci , reason = "Works locally but fails in the CI because of CELERY_TASK_ALWAYS_EAGER = True " )
159159def test_v2_multiTaskFactSheet (page : Page ) -> None :
160160 page .goto ("/" )
161161 page .get_by_role ("link" , name = " Benchmarks/Competitions" ).click ()
@@ -199,7 +199,7 @@ def test_v2_multiTaskFactSheet(page: Page) -> None:
199199 ).to_be_visible ()
200200 # The ID on the leaderboard can be one of the children instead of the parent so we try them all
201201 found = False
202- for count in range (0 , 4 ):
202+ for count in range (0 , 5 ):
203203 try :
204204 submission_ID_str = int (submission_Id [0 ]) + count
205205 logger .debug ("Looked for ID : " + str (submission_ID_str ))
0 commit comments