ret = os.fork() # spawn 2 processes, both returnif ret == 0: # child returns with PID of 0 child_suite # child codeelse: # parent returns with child's PID parent_suite # parent code