Update AZP aggregate-coverage.sh and report-coverage.sh

This commit is contained in:
Andrew Klychkov
2021-03-05 14:25:22 +01:00
parent 360d0c3441
commit 4825036c7e
2 changed files with 12 additions and 2 deletions

View File

@@ -5,6 +5,11 @@ set -o pipefail -eu
PATH="${PWD}/bin:${PATH}"
pip install https://github.com/ansible/ansible/archive/devel.tar.gz --disable-pip-version-check
if ! ansible-test --help >/dev/null 2>&1; then
# Install the devel version of ansible-test for generating code coverage reports.
# This is only used by Ansible Collections, which are typically tested against multiple Ansible versions (in separate jobs).
# Since a version of ansible-test is required that can work the output from multiple older releases, the devel version is used.
pip install https://github.com/ansible/ansible/archive/devel.tar.gz --disable-pip-version-check
fi
ansible-test coverage xml --stub --venv --venv-system-site-packages --color -v