Skip to content

Commit 5de31c3

Browse files
committed
be more conservative in how many runs to expect in the test (they might delete all our test runs)
1 parent 9ee9f8d commit 5de31c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_get_runs_list(self):
3939

4040
def test_get_runs_list_by_task(self):
4141
runs = openml.runs.list_runs_by_task(1)
42-
self.assertGreaterEqual(len(runs), 800)
42+
self.assertGreaterEqual(len(runs), 600)
4343
for run in runs:
4444
self._check_run(run)
4545
num_runs = len(runs)

0 commit comments

Comments
 (0)