mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ansible-test: run win httptester with bypass policy (#47090)
This commit is contained in:
parent
c3d5779a41
commit
69e1088ec1
1 changed files with 2 additions and 1 deletions
|
@ -569,7 +569,8 @@ def command_windows_integration(args):
|
||||||
manage.upload("test/runner/setup/windows-httptester.ps1", watcher_path)
|
manage.upload("test/runner/setup/windows-httptester.ps1", watcher_path)
|
||||||
|
|
||||||
# need to use -Command as we cannot pass an array of values with -File
|
# need to use -Command as we cannot pass an array of values with -File
|
||||||
script = "powershell.exe -NoProfile -Command .\\%s -Hosts %s" % (watcher_path, ", ".join(HTTPTESTER_HOSTS))
|
script = "powershell.exe -NoProfile -ExecutionPolicy Bypass -Command .\\%s -Hosts %s" \
|
||||||
|
% (watcher_path, ", ".join(HTTPTESTER_HOSTS))
|
||||||
if args.verbosity > 3:
|
if args.verbosity > 3:
|
||||||
script += " -Verbose"
|
script += " -Verbose"
|
||||||
manage.ssh(script, options=ssh_options, force_pty=False)
|
manage.ssh(script, options=ssh_options, force_pty=False)
|
||||||
|
|
Loading…
Reference in a new issue