Skip to content

Commit f333685

Browse files
committed
TST: fix and not announce xfailed test which checks /server-info - version is provided now
1 parent 71bd0fe commit f333685

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dandi/tests/test_utils.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -394,14 +394,13 @@ def test_get_instance_arbitrary_api_url() -> None:
394394
)
395395

396396

397-
@pytest.mark.xfail(reason="https://github.com/dandi/dandi-archive/issues/1045")
398397
@mark.skipif_no_network
399398
def test_server_info() -> None:
400399
r = requests.get("https://dandiarchive.org/server-info")
401400
r.raise_for_status()
402401
data = r.json()
403402
assert "version" in data
404-
assert Version(data["version"]) >= Version("1.2.0")
403+
assert Version(data["version"]) >= Version("0.2.18")
405404
assert "cli-minimal-version" in data
406405
assert "cli-bad-versions" in data
407406
assert "services" in data

0 commit comments

Comments
 (0)