Add test to verify pkg_resources imports work.

pull/73594/head
Matt Clay 5 years ago
parent 18f7282ccf
commit 133a29acb4

@ -0,0 +1,23 @@
"""
This test case verifies that pkg_resources imports from ansible plugins are functional.
If pkg_resources is not installed this test will succeed.
If pkg_resources is installed but is unable to function, this test will fail.
One known failure case this test can detect is when ansible declares a __requires__ and then tests are run without an egg-info directory.
"""
from __future__ import absolute_import, division, print_function
__metaclass__ = type
# noinspection PyUnresolvedReferences
try:
from pkg_resources import Requirement
except ImportError:
Requirement = None
from ansible.plugins.lookup import LookupBase
class LookupModule(LookupBase):
def run(self, terms, variables=None, **kwargs):
return []

@ -0,0 +1,3 @@
- name: Verify that pkg_resources imports are functional
debug:
msg: "{{ lookup('check_pkg_resources') }}"
Loading…
Cancel
Save