Pass PATH (and other stuff) into the child process

This commit is contained in:
Jean-Paul Calderone 2020-10-16 11:27:13 -04:00
parent 75b3bf1097
commit 64a9e95319

View File

@ -1,7 +1,7 @@
import sys import sys
import time import time
import json import json
from os import mkdir from os import mkdir, environ
from os.path import exists, join from os.path import exists, join
from six.moves import StringIO from six.moves import StringIO
from functools import partial from functools import partial
@ -145,6 +145,7 @@ def _tahoe_runner_optional_coverage(proto, reactor, request, other_args):
proto, proto,
sys.executable, sys.executable,
args, args,
env=environ,
) )