2019-12-14 02:03:27 -06:00
|
|
|
"""
|
|
|
|
test_ext_duration
|
|
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Test sphinx.ext.duration extension.
|
|
|
|
|
2020-12-31 11:00:29 -06:00
|
|
|
:copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
|
2019-12-14 02:03:27 -06:00
|
|
|
:license: BSD, see LICENSE for details.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
2020-11-11 05:00:27 -06:00
|
|
|
|
2019-12-14 02:03:27 -06:00
|
|
|
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())
|