Closed zsol closed 1 year ago
Base: 84.48% // Head: 84.50% // Increases project coverage by +0.01%
:tada:
Coverage data is based on head (
3ef3671
) compared to base (c5c475e
). Patch coverage: 100.00% of modified lines in pull request are covered.
:umbrella: View full report at Codecov.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
Superceded by #46, hope thats ok thanks
Calling
to_docutils_ast
repeatedly results in callingcompile_namespace
every time, even if directives and roles don't change between invocations.compile_namespace
is relatively expensive, especially when sphinx is involved. This commit memoizescompile_namespace
for significant perf improvements.