mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
dfd19a812f
- Overhauled coverage injector to fix issues with non-local tests. - Updated integration tests to work with the new coverage injector. - Fix concurrency issue by using random temp files for delegation. - Fix handling of coverage files from root user. - Fix handling of coverage files without arcs. - Make sure temp copy of injector is world readable and executable.
9 lines
165 B
Bash
Executable file
9 lines
165 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
ansible --version
|
|
ansible --help
|
|
|
|
ansible testhost -i ../../inventory -m ping "$@"
|
|
ansible testhost -i ../../inventory -m setup "$@"
|