Skip to content

Commit e990242

Browse files
authored
Merge branch 'develop' into fix373
2 parents db65bdc + 2fffbcd commit e990242

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
@@ -519,7 +519,10 @@ def test_get_run_trace(self):
519519
run = run.publish()
520520
self._wait_for_processed_run(run.run_id, 200)
521521
run_id = run.run_id
522-
except openml.exceptions.PyOpenMLError:
522+
except openml.exceptions.PyOpenMLError as e:
523+
if 'Run already exists in server' not in e.message:
524+
# in this case the error was not the one we expected
525+
raise e
523526
# run was already
524527
flow = openml.flows.sklearn_to_flow(clf)
525528
flow_exists = openml.flows.flow_exists(flow.name, flow.external_version)

0 commit comments

Comments
 (0)