powerful-florist-1807
12/08/2022, 6:29 PMlogging
library to log messages for tests. But I didn't see any output messages even though I applied the -ldebug
option, e.x. "./pants -ldebug test ...". Does anyone know how to see the logging outputs? Thanks!wide-midnight-78598
12/08/2022, 6:40 PMcaplog
?powerful-florist-1807
12/08/2022, 6:50 PMimport logging
, <http://logging.info|logging.info>(...)
happy-kitchen-89482
12/08/2022, 6:54 PM--test-output=all
, otherwise we suppress the output of tests that passpowerful-florist-1807
12/08/2022, 6:54 PMhappy-kitchen-89482
12/08/2022, 7:05 PMpowerful-florist-1807
12/08/2022, 7:39 PMrequirements.pex
instead of the running the test itself.happy-kitchen-89482
12/08/2022, 10:22 PM-s
to pytest for that./pants test --output=all <targets> -- -s
powerful-florist-1807
12/08/2022, 10:41 PM