- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我写了许多 sphinxdoc 扩展,例如这个(用作示例,因为它是最简单的):
from docutils import nodes
from docutils.statemachine import StringList
from sphinx.util.compat import Directive
class SvnRevisionDirective(Directive):
"""Directive to display subversion revision of the path.
"""
has_content = True
required_arguments = 1
optional_arguments = 1
final_argument_whitespace = False
option_spec = {}
def run(self):
path = self.arguments[0]
# rev = svntools.Revision(path)
rev = 42
paragraph = nodes.paragraph()
self.state.nested_parse(
StringList([
'**Revision:** r%d' % rev
]), 0, paragraph)
return [paragraph]
def setup(app):
"""Directive framework code.
"""
app.add_directive('svnrevision', SvnRevisionDirective)
extensions
后在文档的
conf.py
中它可以像这样使用:
.. svnrevision:: mypackage/__init__.py
tests/testproj
目录并用
docs
填充它目录,一个
conf.py
文件和
index.rst
包含指令的文件,并使用:
import os
import pytest
DIRNAME = os.path.dirname(__file__)
@pytest.mark.django_db
def test_svnrevision(monkeypatch):
testprojdir = os.path.join(DIRNAME, 'testproj')
monkeypatch.setenv('PYTHONPATH', testprojdir, os.pathsep)
monkeypatch.setenv('DJANGO_SETTINGS_MODULE', 'testingapp.settings')
monkeypatch.chdir(DIRNAME)
cmd = 'sphinx-build -bhtml -a -E testproj/docs testproj/build'
os.system(cmd)
def test_svnrevision():
rst = """
.. svnrevision:: mypackage/__init__.py
"""
svndirective = SvnRevisionDirective(...., rst, ...)
result = svndirective.run()
assert result.___ == '**Revision:** 42'
最佳答案
如果你使用 unittest 或nose,你可以尝试使用 sphinx-testing模块,可在 PyPI 上使用。
对于基于 pytest 的单元测试,the approach differs based on Sphinx version you are using .
从 Sphinx 1.6.1 开始,你可以使用 pytest 插件 sphinx.testing.fixtures
如 Sphinx Developer’s Guide 中所述.虽然此功能仍处于试验阶段,但与下面描述的其他功能相比,它似乎是更好的选择。
对于 Sphinx <= 1.6.0 的 pytest 测试,无法直接重用 Sphinx 测试 fixture 。可以尝试复制contest.py
, path.py
和 util.py
来自 sphinx/tests
directory 的文件进入你自己的项目并破解 util.py
文件有点让它在没有自定义 sphinx runner 的情况下工作(run.py
文件):
+# code from run.py
+testroot = os.path.dirname(__file__) or '.'
+# find a temp dir for testing and clean it up now
+os.environ['SPHINX_TEST_TEMPDIR'] = \
+ os.path.abspath(os.path.join(testroot, 'build')) \
+ if 'SPHINX_TEST_TEMPDIR' not in os.environ \
+ else os.path.abspath(os.environ['SPHINX_TEST_TEMPDIR'])
+
rootdir = path(os.path.dirname(__file__) or '.').abspath()
tempdir = path(os.environ['SPHINX_TEST_TEMPDIR']).abspath()
+# code from run.py
+print('Temporary files will be placed in %s.' % tempdir)
+if tempdir.exists():
+ tempdir.rmtree()
+tempdir.makedirs()
+
关于python - 如何对具有覆盖率的 sphinxdoc 扩展进行单元测试(在 PyCharm 中)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42468239/
是否有一种简单的方法来自定义现有的 sphinxdoc 主题?对于默认主题,有很多主题属性,但在 sphinxdoc 中我什至无法设置 Logo 或更改一些颜色。 或者您能给我推荐一个可以学习如何修改
所以我写了许多 sphinxdoc 扩展,例如这个(用作示例,因为它是最简单的): from docutils import nodes from docutils.statemachine impo
我是一名优秀的程序员,十分优秀!