Skip to content

Commit 934eb90

Browse files
authored
🧪 TESTS: Remove needless xfail (#180)
1 parent d0725a3 commit 934eb90

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[build-system]
22
requires = ["setuptools>=46.4.0", "wheel"]
33
build-backend = "setuptools.build_meta"
4+
5+
[tool.pytest.ini_options]
6+
xfail_strict = true

tests/test_port/test_fixtures.py

-6
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,6 @@ def test_commonmark_extras(line, title, input, expected):
7777
read_fixture_file(FIXTURE_PATH.joinpath("normalize.md")),
7878
)
7979
def test_normalize_url(line, title, input, expected):
80-
if title in {
81-
"Keep %25 as is because decoding it may break urls, #720",
82-
"Square brackets are allowed",
83-
}:
84-
# TODO fix failing url escaping test
85-
pytest.xfail("url normalisation")
8680
md = MarkdownIt("commonmark")
8781
text = md.render(input)
8882
assert text.rstrip() == expected.rstrip()

0 commit comments

Comments
 (0)