We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c80c1b0 commit a423a6aCopy full SHA for a423a6a
1 file changed
tests/test_tasks/test_task_functions.py
@@ -42,6 +42,12 @@ def test__get_estimation_procedure_list(self):
42
self.assertIsInstance(estimation_procedures[0], dict)
43
self.assertEqual(estimation_procedures[0]['task_type_id'], 1)
44
45
+
46
+ def test_list_clustering_task(self):
47
+ # as shown by #383, clustering tasks can give problems to server
48
+ openml.config.server = self.production_server
49
+ openml.tasks.list_tasks(task_type_id=5, size=10)
50
51
def _check_task(self, task):
52
self.assertEqual(type(task), dict)
53
self.assertGreaterEqual(len(task), 2)
0 commit comments