summaryrefslogtreecommitdiff
path: root/test/lib/ansible_test/_internal/python_requirements.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/ansible_test/_internal/python_requirements.py')
-rw-r--r--test/lib/ansible_test/_internal/python_requirements.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/lib/ansible_test/_internal/python_requirements.py b/test/lib/ansible_test/_internal/python_requirements.py
index 0e133f913f..fc88b637c2 100644
--- a/test/lib/ansible_test/_internal/python_requirements.py
+++ b/test/lib/ansible_test/_internal/python_requirements.py
@@ -48,6 +48,7 @@ from .data import (
from .host_configs import (
PosixConfig,
PythonConfig,
+ VirtualPythonConfig,
)
from .connections import (
@@ -265,6 +266,20 @@ def run_pip(
connection = connection or LocalConnection(args)
script = prepare_pip_script(commands)
+ if isinstance(args, IntegrationConfig):
+ # Integration tests can involve two hosts (controller and target).
+ # The connection type can be used to disambiguate between the two.
+ context = " (controller)" if isinstance(connection, LocalConnection) else " (target)"
+ else:
+ context = ""
+
+ if isinstance(python, VirtualPythonConfig):
+ context += " [venv]"
+
+ # The interpreter path is not included below.
+ # It can be seen by running ansible-test with increased verbosity (showing all commands executed).
+ display.info(f'Installing requirements for Python {python.version}{context}')
+
if not args.explain:
try:
connection.run([python.path], data=script, capture=False)