MCPcopy Create free account
hub / github.com/GothenburgBitFactory/taskwarrior / process

Function process

test/basetest/utils.py:99–107  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

97 """Wait for process to finish"""
98
99 def process():
100 try:
101 os.kill(pid, 0)
102 except OSError:
103 # Process is dead
104 return True
105 else:
106 # Process is still ticking
107 return None
108
109 return wait_condition(process, timeout)
110

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected