Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/test_runs/test_run_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,10 @@ def test_get_run_trace(self):
run = run.publish()
self._wait_for_processed_run(run.run_id, 200)
run_id = run.run_id
except openml.exceptions.PyOpenMLError:
except openml.exceptions.PyOpenMLError as e:
if 'Run already exists in server' not in e.message:
# in this case the error was not the one we expected
raise e
# run was already
flow = openml.flows.sklearn_to_flow(clf)
flow_exists = openml.flows.flow_exists(flow.name, flow.external_version)
Expand Down