mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-23 04:24:00 -07:00
Refactor ansible-test config classes. (#26505)
* Move Config classes from executor.py to config.py. * Move Environment and Test config to config.py. * Move Coverage/CoverageReport Config to config.py. * Clean up type hints.
This commit is contained in:
parent
bd8ea89b1b
commit
45e377566c
10 changed files with 270 additions and 231 deletions
|
@ -27,6 +27,13 @@ from lib.executor import (
|
|||
command_shell,
|
||||
SUPPORTED_PYTHON_VERSIONS,
|
||||
COMPILE_PYTHON_VERSIONS,
|
||||
ApplicationWarning,
|
||||
Delegate,
|
||||
generate_pip_install,
|
||||
check_startup,
|
||||
)
|
||||
|
||||
from lib.config import (
|
||||
PosixIntegrationConfig,
|
||||
WindowsIntegrationConfig,
|
||||
NetworkIntegrationConfig,
|
||||
|
@ -34,10 +41,6 @@ from lib.executor import (
|
|||
UnitsConfig,
|
||||
CompileConfig,
|
||||
ShellConfig,
|
||||
ApplicationWarning,
|
||||
Delegate,
|
||||
generate_pip_install,
|
||||
check_startup,
|
||||
)
|
||||
|
||||
from lib.sanity import (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue