We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87c931b commit 202a53cCopy full SHA for 202a53c
tests/test_extensions/test_ext_duration.py
@@ -51,7 +51,7 @@ def test_duration(app: SphinxTestApp) -> None:
51
def test_n_slowest_value(app: SphinxTestApp) -> None:
52
app.build()
53
54
- matches = re.findall(r'\d+\.\d{3}s\s+[A-Za-z0-9]+\n', app.status.getvalue())
+ matches = re.findall(r'\d+\.\d{3}s\s+[A-Za-z0-9/]+\n', app.status.getvalue())
55
assert len(matches) == 2
56
57
@@ -65,7 +65,7 @@ def test_n_slowest_all(app: SphinxTestApp) -> None:
65
66
67
assert 'slowest reading durations' in app.status.getvalue()
68
69
assert len(matches) > 0
70
71
0 commit comments