bazeltools / bazelfe

Set of tools to handle errors/work with bazel invocations
Apache License 2.0
10 stars 2 forks source link

Remove panics from xml writing #1075

Closed johnynek closed 9 months ago

johnynek commented 9 months ago

occasionally we see panics when trying to generate the junit xml. The junit code has a number of expect calls.

This pr changes the code to pass the Result along, aggregate all the xml writing failures, and list those at the very end.

It should only improve matters.