summaryrefslogtreecommitdiff
path: root/test/lib/ansible_test/_internal/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/ansible_test/_internal/config.py')
-rw-r--r--test/lib/ansible_test/_internal/config.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/lib/ansible_test/_internal/config.py b/test/lib/ansible_test/_internal/config.py
index dbc137b5..4e697933 100644
--- a/test/lib/ansible_test/_internal/config.py
+++ b/test/lib/ansible_test/_internal/config.py
@@ -8,6 +8,7 @@ import sys
import typing as t
from .util import (
+ display,
verify_sys_executable,
version_to_str,
type_guard,
@@ -135,6 +136,12 @@ class EnvironmentConfig(CommonConfig):
data_context().register_payload_callback(host_callback)
+ if args.docker_no_pull:
+ display.warning('The --docker-no-pull option is deprecated and has no effect. It will be removed in a future version of ansible-test.')
+
+ if args.no_pip_check:
+ display.warning('The --no-pip-check option is deprecated and has no effect. It will be removed in a future version of ansible-test.')
+
@property
def controller(self) -> ControllerHostConfig:
"""Host configuration for the controller."""