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.
2 parents 8a8c6dd + 2fffbcd commit 8aca0bdCopy full SHA for 8aca0bd
1 file changed
tests/test_runs/test_run_functions.py
@@ -518,7 +518,10 @@ def test_get_run_trace(self):
518
run = run.publish()
519
self._wait_for_processed_run(run.run_id, 200)
520
run_id = run.run_id
521
- except openml.exceptions.PyOpenMLError:
+ except openml.exceptions.PyOpenMLError as e:
522
+ if 'Run already exists in server' not in e.message:
523
+ # in this case the error was not the one we expected
524
+ raise e
525
# run was already
526
flow = openml.flows.sklearn_to_flow(clf)
527
flow_exists = openml.flows.flow_exists(flow.name, flow.external_version)
0 commit comments