You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If check=False is in the args then the run(..) function returns before execution has completed. I assume this is because CompletedProcess.returncode is a coroutine, so the calling thread doesn't block until it is accessed. When check=True this happens at the end of run(..).
The text was updated successfully, but these errors were encountered:
jonashaag
added a commit
to jonashaag/subprocess-tee
that referenced
this issue
Dec 22, 2023
If
check=False
is in the args then therun(..)
function returns before execution has completed. I assume this is becauseCompletedProcess.returncode
is a coroutine, so the calling thread doesn't block until it is accessed. Whencheck=True
this happens at the end ofrun(..)
.The text was updated successfully, but these errors were encountered: