mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Keep imports alphabetically sorted and their order homogeneous across Python source files. The isort project has more feature and is more active than the flake8-import-order plugin. Most issues caught were simply import ordering from the same module. Where imports were purposefully placed out of order, tag with isort:skip.
23 lines
543 B
Python
23 lines
543 B
Python
"""
|
|
test_ext_duration
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
Test sphinx.ext.duration extension.
|
|
|
|
:copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
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())
|