We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b15a5dd commit 059302fCopy full SHA for 059302f
tests/test_extension.py
@@ -1,4 +1,5 @@
1
import pickle
2
+import sys
3
4
from docutils import nodes
5
from sphinx import addnodes as sphinx_nodes
@@ -91,6 +92,10 @@ def test_commands(make_app, rootdir):
91
92
93
94
def test_nested_full(make_app, rootdir):
95
+ # Make sure this sphinx-click reloads the module from this rootdir.
96
+ if "greet" in sys.modules:
97
+ del sys.modules["greet"]
98
+
99
srcdir = rootdir / 'nested-full'
100
app = make_app('xml', srcdir=srcdir)
101
app.build()
0 commit comments