jolly-midnight-72759
07/30/2021, 3:04 PMnever
for pytest runs. Is there a way to show skipped and failed by default? When I try ./pants test --output=failed a/tests/python:: -- -rs
I only get failed. When I try --output=all
I also get the "passed" output.happy-kitchen-89482
07/30/2021, 3:24 PMjolly-midnight-72759
07/30/2021, 3:26 PMskip
or xfail
, then I come back to it and whittle down my skipped tests until there are none.-rs
or -rxXs
without also having to pass --output=all
.short test summary info
is the most important thing in this because I use the reason=
to help me pick up where I left off.happy-kitchen-89482
07/30/2021, 4:06 PMjolly-midnight-72759
07/30/2021, 4:07 PM./pants test --summary a/tests/python::
consolidated all the short test summary info
into a single list that would create a one stop summary for the test run that would be easy to parse.