Skip to content

Commit 8aca0bd

Browse files
authored
Merge branch 'develop' into dataupload
2 parents 8a8c6dd + 2fffbcd commit 8aca0bd

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/test_runs/test_run_functions.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,10 @@ def test_get_run_trace(self):
518518
run = run.publish()
519519
self._wait_for_processed_run(run.run_id, 200)
520520
run_id = run.run_id
521-
except openml.exceptions.PyOpenMLError:
521+
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
522525
# run was already
523526
flow = openml.flows.sklearn_to_flow(clf)
524527
flow_exists = openml.flows.flow_exists(flow.name, flow.external_version)

0 commit comments

Comments
 (0)