Skip Ansible 2.9 coverage reporting with new AZP container. (#4841)

ci_coverage
This commit is contained in:
Felix Fontein 2022-06-14 21:31:43 +02:00 committed by GitHub
parent 141f32c78b
commit 48fbd69835
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View file

@ -9,6 +9,10 @@ PATH="${PWD}/bin:${PATH}"
mkdir "${agent_temp_directory}/coverage/"
if [[ "$(ansible --version)" =~ \ 2\.9\. ]]; then
exit
fi
options=(--venv --venv-system-site-packages --color -v)
ansible-test coverage combine --group-by command --export "${agent_temp_directory}/coverage/" "${options[@]}"