From 81fb4141977c17d90e4b2033d52cd3faf5cd0507 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 17 Apr 2023 06:49:22 +0200 Subject: [PATCH] Make CI failures better readable. (#511) --- noxfile.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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.*"))