You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
823 B
INI
22 lines
823 B
INI
# code: language=ini
|
|
# vim: syntax=dosini
|
|
|
|
# When running the tests outside CI, make a single 'target' host which is the
|
|
# local machine. The ansible_user override is necessary since some tests want a
|
|
# fixed ansible.cfg remote_user setting to test against.
|
|
# FIXME Hardcoded by replacement in some CI runs https://github.com/mitogen-hq/mitogen/issues/1022
|
|
# and os.environ['USER'] is not populated on Azure macOS runners.
|
|
target ansible_host=localhost ansible_user="{{ lookup('pipe', 'whoami') }}"
|
|
|
|
[test-targets]
|
|
target
|
|
|
|
[linux_containers]
|
|
|
|
[issue905]
|
|
ssh-common-args ansible_host=localhost ansible_user="{{ lookup('pipe', 'whoami') }}"
|
|
|
|
[issue905:vars]
|
|
ansible_ssh_common_args=-o PermitLocalCommand=yes -o LocalCommand="touch {{ ssh_args_canary_file }}"
|
|
ssh_args_canary_file=/tmp/ssh_args_{{ inventory_hostname }}
|