Open ptomato opened 9 years ago
The JUnit format allows <system-out> and <system-err> elements that report any output from stdout and stderr captured during a test or suite. The TAP reporter can output this as diagnostic lines.
<system-out>
<system-err>
In Python: http://stackoverflow.com/a/22434262/172999
Note, it also messes up the TAP reporter if you print to stdout in a test, since any non-TAP data should be prefixed with #.
#
The JUnit format allows
<system-out>
and<system-err>
elements that report any output from stdout and stderr captured during a test or suite. The TAP reporter can output this as diagnostic lines.