We use golang verbose testing (go test -v
).
And typical output is something like
=== RUN TestFunctionA
--- PASS: TestFunctionA (0.00s)
=== RUN TestFunctionB
--- PASS: TestFunctionB (0.00s)
You might see the problem already:
In the Collapsing Log Output
feature, ---
is used to start a group and +++
to close the group,
however go does not use this syntax which leads to wrong output.
For this purpose it would be great to have an option to disable the collapsing output (on pipeline basis)