mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-13 11:49:11 -07:00
Add --raw
option to ansible-test shell command.
It is currently supported only with the `--remote` option. This makes it easier to troubleshoot new instances which are not yet supported by the setup scripts used by ansible-test.
This commit is contained in:
parent
9436ce5d85
commit
0826a00803
5 changed files with 37 additions and 0 deletions
|
@ -161,6 +161,10 @@ def install_command_requirements(args, python_version=None):
|
|||
:type args: EnvironmentConfig
|
||||
:type python_version: str | None
|
||||
"""
|
||||
if isinstance(args, ShellConfig):
|
||||
if args.raw:
|
||||
return
|
||||
|
||||
generate_egg_info(args)
|
||||
|
||||
if not args.requirements:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue