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 5618eb4 commit c8e8d7cCopy full SHA for c8e8d7c
1 file changed
tests/test_tasks/test_task.py
@@ -62,6 +62,9 @@ def test_upload_task(self):
62
# success
63
break
64
except OpenMLServerException as e:
65
+ # Error code for 'task already exists'
66
+ # Should be 533 according to the docs
67
+ # (# https://www.openml.org/api_docs#!/task/post_task)
68
if e.code == 614:
69
continue
70
else:
0 commit comments