summaryrefslogtreecommitdiff
path: root/test/lib/ansible_test/_internal/provider/layout/ansible.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/ansible_test/_internal/provider/layout/ansible.py')
-rw-r--r--test/lib/ansible_test/_internal/provider/layout/ansible.py42
1 files changed, 22 insertions, 20 deletions
diff --git a/test/lib/ansible_test/_internal/provider/layout/ansible.py b/test/lib/ansible_test/_internal/provider/layout/ansible.py
index e8d01919cf..d2f8cc818a 100644
--- a/test/lib/ansible_test/_internal/provider/layout/ansible.py
+++ b/test/lib/ansible_test/_internal/provider/layout/ansible.py
@@ -11,6 +11,7 @@ from . import (
class AnsibleLayout(LayoutProvider):
"""Layout provider for Ansible source."""
+
@staticmethod
def is_content_root(path: str) -> bool:
"""Return True if the given path is a content root for this provider."""
@@ -20,25 +21,26 @@ class AnsibleLayout(LayoutProvider):
"""Create a Layout using the given root and paths."""
plugin_paths = dict((p, os.path.join('lib/ansible/plugins', p)) for p in self.PLUGIN_TYPES)
- plugin_paths.update(dict(
+ plugin_paths.update(
modules='lib/ansible/modules',
module_utils='lib/ansible/module_utils',
- ))
-
- return ContentLayout(root,
- paths,
- plugin_paths=plugin_paths,
- collection=None,
- test_path='test',
- results_path='test/results',
- sanity_path='test/sanity',
- sanity_messages=None,
- integration_path='test/integration',
- integration_targets_path='test/integration/targets',
- integration_vars_path='test/integration/integration_config.yml',
- integration_messages=None,
- unit_path='test/units',
- unit_module_path='test/units/modules',
- unit_module_utils_path='test/units/module_utils',
- unit_messages=None,
- )
+ )
+
+ return ContentLayout(
+ root,
+ paths,
+ plugin_paths=plugin_paths,
+ collection=None,
+ test_path='test',
+ results_path='test/results',
+ sanity_path='test/sanity',
+ sanity_messages=None,
+ integration_path='test/integration',
+ integration_targets_path='test/integration/targets',
+ integration_vars_path='test/integration/integration_config.yml',
+ integration_messages=None,
+ unit_path='test/units',
+ unit_module_path='test/units/modules',
+ unit_module_utils_path='test/units/module_utils',
+ unit_messages=None,
+ )