mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 20:31:27 -07:00
Add support for cloud tests to ansible-test. (#24315)
* Split out ansible-test docker functions. * Add cloud support to ansible-test.
This commit is contained in:
parent
986765312f
commit
a07d42e16d
19 changed files with 1059 additions and 135 deletions
|
@ -13,6 +13,13 @@ except ImportError:
|
|||
# noinspection PyCompatibility, PyUnresolvedReferences
|
||||
from urllib.parse import urlencode # pylint: disable=locally-disabled, import-error, no-name-in-module
|
||||
|
||||
try:
|
||||
# noinspection PyCompatibility
|
||||
from urlparse import urlparse
|
||||
except ImportError:
|
||||
# noinspection PyCompatibility, PyUnresolvedReferences
|
||||
from urllib.parse import urlparse # pylint: disable=locally-disabled, ungrouped-imports
|
||||
|
||||
from lib.util import (
|
||||
CommonConfig,
|
||||
ApplicationError,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue