diff --git a/noxfile.py b/noxfile.py index 468f1f86..ca13e710 100644 --- a/noxfile.py +++ b/noxfile.py @@ -134,7 +134,11 @@ def coverage_release(session: nox.Session): *posargs, "-e", f"antsibull_build_command={build_command!r}", - env={"ANSIBLE_COLLECTIONS_PATH": str(collections), **cov_env}, + env={ + "ANSIBLE_COLLECTIONS_PATH": str(collections), + "ANSIBLE_CALLBACK_RESULT_FORMAT": "yaml", + **cov_env, + }, ) combined = map(str, tmp.glob(".coverage.*"))