|
@@ -24,8 +24,20 @@ from unittest.mock import MagicMock
|
|
|
|
|
|
#sys.path.insert(0, os.path.abspath('../'))
|
|
#sys.path.insert(0, os.path.abspath('../'))
|
|
sys.path.append(os.path.abspath('../'))
|
|
sys.path.append(os.path.abspath('../'))
|
|
|
|
+
|
|
|
|
+class MockModule(MagicMock):
|
|
|
|
+ @classmethod
|
|
|
|
+ def __getattr__(cls, name):
|
|
|
|
+ return MagicMock()
|
|
|
|
+
|
|
|
|
+# LMDB raises an issue if imported by Sphinx. This bypasses the issue.
|
|
|
|
+# https://github.com/dw/py-lmdb/issues/172
|
|
|
|
+MOCK_MODULES = ['lmdb']
|
|
|
|
+sys.modules.update((mod_name, MockModule()) for mod_name in MOCK_MODULES)
|
|
|
|
+
|
|
import lakesuperior.env_setup
|
|
import lakesuperior.env_setup
|
|
|
|
|
|
|
|
+
|
|
# -- General configuration ------------------------------------------------
|
|
# -- General configuration ------------------------------------------------
|
|
|
|
|
|
# If your documentation needs a minimal Sphinx version, state it here.
|
|
# If your documentation needs a minimal Sphinx version, state it here.
|
|
@@ -174,17 +186,6 @@ texinfo_documents = [
|
|
'Miscellaneous'),
|
|
'Miscellaneous'),
|
|
]
|
|
]
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
# Example configuration for intersphinx: refer to the Python standard library.
|
|
# Example configuration for intersphinx: refer to the Python standard library.
|
|
intersphinx_mapping = {'https://docs.python.org/': None}
|
|
intersphinx_mapping = {'https://docs.python.org/': None}
|
|
|
|
|
|
-class Mock(MagicMock):
|
|
|
|
- @classmethod
|
|
|
|
- def __getattr__(cls, name):
|
|
|
|
- return MagicMock()
|
|
|
|
-
|
|
|
|
-MOCK_MODULES = ['lmdb']
|
|
|
|
-sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
|
|
|
|
-
|
|
|