mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-02 23:31:25 -07:00
- 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 "$@"
|