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 6ffac4e commit 276b851Copy full SHA for 276b851
1 file changed
tests/test_api/test_run.py
@@ -119,18 +119,3 @@ def test_run_v2_publish_not_supported(run_v2):
119
match="RunV2API: v2 API does not support `publish` for resource `run`",
120
):
121
run_v2.publish(path="run", files={"description": "<run/>"})
122
-
123
124
-@pytest.mark.test_server()
125
-def test_run_v1_v2_contracts(run_v1, run_v2):
126
- run_from_v1 = run_v1.get(run_id=1)
127
- _assert_run_shape(run_from_v1)
128
129
- with pytest.raises(OpenMLNotSupportedError, match="does not support `get`"):
130
- run_v2.get(run_id=1)
131
132
- with pytest.raises(OpenMLNotSupportedError, match="does not support `list`"):
133
- run_v2.list(limit=5, offset=0)
134
135
- with pytest.raises(OpenMLNotSupportedError, match="does not support `publish`"):
136
- run_v2.publish(path="run", files={"description": "<run/>"})
0 commit comments