Skip to content

Commit

Permalink
tests: mark netloc only memory normalization tests as currently broken
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-- committed Jan 26, 2024
1 parent 22c361d commit f1e19ea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion upath/tests/implementations/test_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ def test_is_MemoryPath(self):
("memory:/a", "memory://a"),
("memory:/a/b", "memory://a/b"),
("memory://", "memory://"),
("memory://a", "memory://a"),
pytest.param(
"memory://a",
"memory://a",
marks=pytest.mark.xfail(reason="currently broken due to urllib parsing"),
),
("memory://a/b", "memory://a/b"),
("memory:///", "memory://"),
("memory:///a", "memory://a"),
Expand Down

0 comments on commit f1e19ea

Please sign in to comment.