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