I use also ansible and I took the approach to convert the ansible playbook output to JUnit format and that helps me to see the number of executed tasks and their status (success, failed, skipped).
In case you are interested about it: - https://docs.ansible.com/ansible/latest/plugins/callback/junit.html Some snippets ansible.cfg [defaults] callback_whitelist = junit pipeline try { sh "export JUNIT_OUTPUT_DIR=target ansible-playbook ..." } catch (Exception e) { throw e } finally { junit 'target/*' } You might need also the pip package pip install junit-xml Not sure, if this particular suggestion might help to your use case. Cheers -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/f7891c9b-00a1-4ff8-8590-3ecfef42a789%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
