diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-12-14 17:03:27 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-12-16 00:47:23 +0900 |
commit | 29687a29f1af9a04b8271a1afb3697ac5bc9ae4e (patch) | |
tree | e1ad3bcefd256cbc05c3754a94e1d9c12f2126d0 /tests/test_ext_duration.py | |
parent | 0f79bccb3510f7e030d4eeb986934524e55e5c0e (diff) | |
download | sphinx-git-29687a29f1af9a04b8271a1afb3697ac5bc9ae4e.tar.gz |
Close #6446: Add sphinx.ext.durations to inspect durations of build
Diffstat (limited to 'tests/test_ext_duration.py')
-rw-r--r-- | tests/test_ext_duration.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/test_ext_duration.py b/tests/test_ext_duration.py new file mode 100644 index 000000000..65ea1eef7 --- /dev/null +++ b/tests/test_ext_duration.py @@ -0,0 +1,21 @@ +""" + test_ext_duration + ~~~~~~~~~~~~~~~~~ + + Test sphinx.ext.duration extension. + + :copyright: Copyright 2007-2019 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()) |