I expect launch log output to print to screen while my all my processes launch.
Actual behavior
Nothing prints in the terminal until test_fastapi_client actually started. This could be 120 seconds given the _client.assert_wait_for_services line. I simplified this example but its not as easy to move construction into my actual test.
Happy to help contribute if someone with more experience can point me in the right direction.
Bug report
Required Info:
Steps to reproduce issue
I run pytest with the
-s
flag, but output is buffered until the test actually starts to execute.Expected behavior
I expect launch log output to print to screen while my all my processes launch.
Actual behavior
Nothing prints in the terminal until
test_fastapi_client
actually started. This could be 120 seconds given the_client.assert_wait_for_services
line. I simplified this example but its not as easy to move construction into my actual test.Happy to help contribute if someone with more experience can point me in the right direction.