@@ -67,7 +67,7 @@ def test_commonmark_extras(line, title, input, expected):
67
67
if line in [74 , 88 ]:
68
68
# TODO fix failing escaping tests
69
69
# probably requires a fix of common.utils.stripEscape
70
- pytest .skip ("escaping entities in link titles / fence.info" )
70
+ pytest .xfail ("escaping entities in link titles / fence.info" )
71
71
md = MarkdownIt ("commonmark" )
72
72
md .options ["langPrefix" ] = ""
73
73
text = md .render (input )
@@ -83,7 +83,7 @@ def test_commonmark_extras(line, title, input, expected):
83
83
def test_normalize_url (line , title , input , expected ):
84
84
if "Keep %25" in title :
85
85
# TODO fix failing url escaping test
86
- pytest .skip ("url normalisation" )
86
+ pytest .xfail ("url normalisation" )
87
87
md = MarkdownIt ("commonmark" )
88
88
text = md .render (input )
89
89
assert text .rstrip () == expected .rstrip ()
@@ -95,7 +95,7 @@ def test_normalize_url(line, title, input, expected):
95
95
def test_fatal (line , title , input , expected ):
96
96
if line in [1 , 17 ]:
97
97
# TODO fix failing url escaping tests
98
- pytest .skip ("url normalisation" )
98
+ pytest .xfail ("url normalisation" )
99
99
md = MarkdownIt ("commonmark" ).enable ("replacements" )
100
100
md .options ["typographer" ] = True
101
101
text = md .render (input )
0 commit comments