Is it expected for `--pytest-args='-s'` to show te...
# general
h
Is it expected for
--pytest-args='-s'
to show test output when a test passes? Seems like I get output when I run
pytest
regularly, but not when running
./pants test
2
b
Try also use --output=all on the test goal. Otherwise pants swallows output for passing test processes
./pants test --output=all ...
h
Thanks! That did it
h
I've idly wondered for a long time whether
--otuput=failed
is the correct default. I think probably yeah, otherwise CI etc is way too verbose
b
Until we can merge test outputs I agree