|
|
@ -114,6 +114,11 @@ def main():
|
|
|
|
# do not support collection loading when not testing a collection
|
|
|
|
# do not support collection loading when not testing a collection
|
|
|
|
collection_loader = None
|
|
|
|
collection_loader = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if collection_loader and import_type == 'plugin':
|
|
|
|
|
|
|
|
# do not unload ansible code for collection plugin (not module) tests
|
|
|
|
|
|
|
|
# doing so could result in the collection loader being initialized multiple times
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
else:
|
|
|
|
# remove all modules under the ansible package, except the preloaded vendor module
|
|
|
|
# remove all modules under the ansible package, except the preloaded vendor module
|
|
|
|
list(map(sys.modules.pop, [m for m in sys.modules if m.partition('.')[0] == ansible.__name__ and m != vendor_module_name]))
|
|
|
|
list(map(sys.modules.pop, [m for m in sys.modules if m.partition('.')[0] == ansible.__name__ and m != vendor_module_name]))
|
|
|
|
|
|
|
|
|
|
|
@ -437,7 +442,7 @@ def main():
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
yield
|
|
|
|
yield
|
|
|
|
finally:
|
|
|
|
finally:
|
|
|
|
if import_type == 'plugin':
|
|
|
|
if import_type == 'plugin' and not collection_loader:
|
|
|
|
from ansible.utils.collection_loader._collection_finder import _AnsibleCollectionFinder
|
|
|
|
from ansible.utils.collection_loader._collection_finder import _AnsibleCollectionFinder
|
|
|
|
_AnsibleCollectionFinder._remove() # pylint: disable=protected-access
|
|
|
|
_AnsibleCollectionFinder._remove() # pylint: disable=protected-access
|
|
|
|
|
|
|
|
|
|
|
@ -486,6 +491,11 @@ def main():
|
|
|
|
with warnings.catch_warnings():
|
|
|
|
with warnings.catch_warnings():
|
|
|
|
warnings.simplefilter('error')
|
|
|
|
warnings.simplefilter('error')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if collection_loader and import_type == 'plugin':
|
|
|
|
|
|
|
|
warnings.filterwarnings(
|
|
|
|
|
|
|
|
"ignore",
|
|
|
|
|
|
|
|
"AnsibleCollectionFinder has already been configured")
|
|
|
|
|
|
|
|
|
|
|
|
if sys.version_info[0] == 2:
|
|
|
|
if sys.version_info[0] == 2:
|
|
|
|
warnings.filterwarnings(
|
|
|
|
warnings.filterwarnings(
|
|
|
|
"ignore",
|
|
|
|
"ignore",
|
|
|
|