Skip to content

Commit cad81c0

Browse files
committed
Print stderr of all jobs regardless of return code
1 parent 1f45fc3 commit cad81c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

litani

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ async def exec_job(args):
739739
with litani.atomic_write(arg_file) as handle:
740740
print(out_str, file=handle)
741741

742-
if out_data["wrapper_return_code"] and out_data["stderr"]:
742+
if out_data["stderr"]:
743743
print(
744744
"\n".join([l.rstrip() for l in out_data["stderr"]]),
745745
file=sys.stderr)

0 commit comments

Comments
 (0)