mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 12:21:26 -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
|
@ -60,6 +60,10 @@ from lib.core_ci import (
|
|||
AWS_ENDPOINTS,
|
||||
)
|
||||
|
||||
from lib.cloud import (
|
||||
initialize_cloud_plugins,
|
||||
)
|
||||
|
||||
import lib.cover
|
||||
|
||||
|
||||
|
@ -68,6 +72,7 @@ def main():
|
|||
try:
|
||||
git_root = os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..'))
|
||||
os.chdir(git_root)
|
||||
initialize_cloud_plugins()
|
||||
sanity_init()
|
||||
args = parse_args()
|
||||
config = args.config(args)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue