mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 20:31:27 -07:00
Use multiple AWS regions in ansible-test. (#20429)
* Move ansible-test EnvironmentConfig to util. * Use multiple AWS regions in ansible-test.
This commit is contained in:
parent
5a48c7ac7a
commit
4ba9f63afe
6 changed files with 108 additions and 63 deletions
|
@ -5,9 +5,21 @@ from __future__ import absolute_import, print_function
|
|||
import os
|
||||
import re
|
||||
|
||||
from lib.target import walk_module_targets
|
||||
from lib.util import display, ApplicationError, run_command
|
||||
from lib.executor import EnvironmentConfig, Delegate, install_command_requirements
|
||||
from lib.target import (
|
||||
walk_module_targets,
|
||||
)
|
||||
|
||||
from lib.util import (
|
||||
display,
|
||||
ApplicationError,
|
||||
EnvironmentConfig,
|
||||
run_command,
|
||||
)
|
||||
|
||||
from lib.executor import (
|
||||
Delegate,
|
||||
install_command_requirements,
|
||||
)
|
||||
|
||||
COVERAGE_DIR = 'test/results/coverage'
|
||||
COVERAGE_FILE = os.path.join(COVERAGE_DIR, 'coverage')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue