some-insurance-58590
12/04/2024, 7:11 PMpants test
output as it happens?
I'm debugging what seems to be a deadlock in my tests, but it's hard to debug exactly where because I can't see my print statements and it just freezes up with a blank screen.
The current command I've been trying without luck: PANTS_DYNAMIC_UI=False pants test --test-output=all --pytest-args="-s -vv" path/to/my/test_file.py
When I keep the sandbox and do ./__run.sh
, the output is immediately displayedcareful-address-89803
12/04/2024, 8:56 PMcareful-address-89803
12/04/2024, 9:00 PMtest
uses a Process
to run, but I think streaming is only set up for `InteractiveProcess`es which are different. Process
doesn't have a flag to set streaming, and I think the streaming is configured on the Rust side of the codebase. When RustRover updates I'll have a look to confirm)gorgeous-winter-99296
12/04/2024, 10:02 PMsome-insurance-58590
12/05/2024, 9:56 PM