summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/cli_api/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pybind/mgr/cli_api/__init__.py')
-rw-r--r--src/pybind/mgr/cli_api/__init__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pybind/mgr/cli_api/__init__.py b/src/pybind/mgr/cli_api/__init__.py
new file mode 100644
index 000000000..a52284054
--- /dev/null
+++ b/src/pybind/mgr/cli_api/__init__.py
@@ -0,0 +1,10 @@
+from .module import CLI
+
+__all__ = [
+ "CLI",
+]
+
+import os
+if 'UNITTEST' in os.environ:
+ import tests # noqa # pylint: disable=unused-import
+ __all__.append(tests.__name__)