mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-12 07:35:31 +01:00
8 lines
230 B
Bash
Executable file
8 lines
230 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Generate code coverage reports for uploading to Azure Pipelines and codecov.io.
|
|
|
|
set -o pipefail -eu
|
|
|
|
PATH="${PWD}/bin:${PATH}"
|
|
|
|
ansible-test coverage xml --stub --venv --venv-system-site-packages --color -v
|