summaryrefslogtreecommitdiff
path: root/test/lib/ansible_test/_internal/cli.py
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2019-08-09 09:38:19 -0700
committerGitHub <noreply@github.com>2019-08-09 09:38:19 -0700
commit2a9964ede8b2b77a62a005f6f5abc964b2819b0e (patch)
treeeb7cfdce8195c45573ca9c4154a4481802ff35c5 /test/lib/ansible_test/_internal/cli.py
parent1405e481577d77d98a0a5ffd8e79628ea4c2e56d (diff)
downloadansible-2a9964ede8b2b77a62a005f6f5abc964b2819b0e.tar.gz
Code cleanup in ansible-test. (#60318)
* Move ansible-test units code into separate dir. * Fix --explain on "code smell" sanity tests. * Add --strict-markers to pytest invoctaion. * Fix classification of units code changes.
Diffstat (limited to 'test/lib/ansible_test/_internal/cli.py')
-rw-r--r--test/lib/ansible_test/_internal/cli.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/lib/ansible_test/_internal/cli.py b/test/lib/ansible_test/_internal/cli.py
index 9cd2b53b3f..04d36f5f7a 100644
--- a/test/lib/ansible_test/_internal/cli.py
+++ b/test/lib/ansible_test/_internal/cli.py
@@ -33,7 +33,6 @@ from .executor import (
command_posix_integration,
command_network_integration,
command_windows_integration,
- command_units,
command_shell,
SUPPORTED_PYTHON_VERSIONS,
ApplicationWarning,
@@ -64,6 +63,10 @@ from .sanity import (
sanity_get_tests,
)
+from .units import (
+ command_units,
+)
+
from .target import (
find_target_completion,
walk_posix_integration_targets,