The current output format for tests run in Circle CI is short-verbose (aka testname). This format does not print sufficient info in case of test failure. For example, it does not print the content written by the program to stdout.
Because of this, reason for test getting stuck (see this CI job) cannot be figured out from test logs.
Description
Update the output format to standard-versbose, where content written by the program to stdout is also printed.
Motivation / Context
The current output format for tests run in Circle CI is
short-verbose
(akatestname
). This format does not print sufficient info in case of test failure. For example, it does not print the content written by the program to stdout.Because of this, reason for test getting stuck (see this CI job) cannot be figured out from test logs.
Description
Update the output format to
standard-versbose
, where content written by the program to stdout is also printed.Relates to
This CI job