blob: 4fa4dfc30328ff6c7136b5b75a637c32aa1313e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""Test sphinx.ext.duration extension."""
import re
import pytest
@pytest.mark.sphinx('dummy', testroot='basic',
confoverrides={'extensions': ['sphinx.ext.duration']})
def test_githubpages(app, status, warning):
app.build()
assert 'slowest reading durations' in status.getvalue()
assert re.search('\\d+\\.\\d{3} index\n', status.getvalue())
|