From 64a9e95319d5ef1bb3a52c6471e353aca0979703 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Fri, 16 Oct 2020 11:27:13 -0400 Subject: [PATCH] Pass PATH (and other stuff) into the child process --- integration/util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/integration/util.py b/integration/util.py index bbcf5efc6..a64bcbf8e 100644 --- a/integration/util.py +++ b/integration/util.py @@ -1,7 +1,7 @@ import sys import time import json -from os import mkdir +from os import mkdir, environ from os.path import exists, join from six.moves import StringIO from functools import partial @@ -145,6 +145,7 @@ def _tahoe_runner_optional_coverage(proto, reactor, request, other_args): proto, sys.executable, args, + env=environ, )