MCPcopy Create free account
hub / github.com/StackStorm/st2 / add_process

Method add_process

st2tests/st2tests/base.py:612–617  ·  view source on GitHub ↗

Add a process to the local data structure to make sure it will get killed and cleaned up on tearDown.

(self, process)

Source from the content-addressed store, hash-verified

610 print("Stderr: %s" % (stderr))
611
612 def add_process(self, process):
613 """
614 Add a process to the local data structure to make sure it will get killed and cleaned up on
615 tearDown.
616 """
617 self.processes[process.pid] = process
618
619 def remove_process(self, process):
620 """

Calls

no outgoing calls