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 0f8b7f0 commit 7e8e904Copy full SHA for 7e8e904
2 files changed
openml/runs/functions.py
@@ -802,7 +802,9 @@ def __list_runs(api_call):
802
'task_id': int(run_['oml:task_id']),
803
'setup_id': int(run_['oml:setup_id']),
804
'flow_id': int(run_['oml:flow_id']),
805
- 'uploader': int(run_['oml:uploader'])}
+ 'uploader': int(run_['oml:uploader']),
806
+ 'upload_time': str(run_['oml:upload_time']),
807
+ 'error_message': str((run_['oml:error_message']) or '')}
808
809
runs[run_id] = run
810
tests/test_runs/test_run_functions.py
@@ -1086,7 +1086,7 @@ def test_get_run(self):
1086
1087
def _check_run(self, run):
1088
self.assertIsInstance(run, dict)
1089
- self.assertEqual(len(run), 5)
+ self.assertEqual(len(run), 7)
1090
1091
def test_get_runs_list(self):
1092
# TODO: comes from live, no such lists on test
0 commit comments