Skip to content

Commit 1c5bdd7

Browse files
committed
add useful error message
1 parent 0b01581 commit 1c5bdd7

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests/test_runs/test_run_functions.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ def _wait_for_processed_run(self, run_id, max_waiting_time_seconds):
7878
return
7979
else:
8080
time.sleep(10)
81+
raise RuntimeError('Could not find any evaluations! Please check whether run {} was '
82+
'evaluated correctly on the server'.format(run_id))
8183

8284
def _compare_predictions(self, predictions, predictions_prime):
8385
self.assertEqual(np.array(predictions_prime['data']).shape,

0 commit comments

Comments
 (0)