sphinx/tests/test_extensions/test_ext_duration.py

20 lines
400 B
Python
Raw Normal View History

2022-02-19 21:05:56 -06:00
"""Test sphinx.ext.duration extension."""
from __future__ import annotations
import re
import pytest
2024-08-11 08:58:56 -05:00
@pytest.mark.sphinx(
'dummy',
testroot='basic',
confoverrides={'extensions': ['sphinx.ext.duration']},
)
def test_githubpages(app):
app.build()
assert 'slowest reading durations' in app.status.getvalue()
assert re.search('\\d+\\.\\d{3} index\n', app.status.getvalue())