We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71bd0fe commit f333685Copy full SHA for f333685
dandi/tests/test_utils.py
@@ -394,14 +394,13 @@ def test_get_instance_arbitrary_api_url() -> None:
394
)
395
396
397
-@pytest.mark.xfail(reason="https://github.com/dandi/dandi-archive/issues/1045")
398
@mark.skipif_no_network
399
def test_server_info() -> None:
400
r = requests.get("https://dandiarchive.org/server-info")
401
r.raise_for_status()
402
data = r.json()
403
assert "version" in data
404
- assert Version(data["version"]) >= Version("1.2.0")
+ assert Version(data["version"]) >= Version("0.2.18")
405
assert "cli-minimal-version" in data
406
assert "cli-bad-versions" in data
407
assert "services" in data
0 commit comments