From 9393c9ad10b45377bd011281babbd235f7f17e07 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Tue, 14 Mar 2023 17:20:44 +0000 Subject: [PATCH] Allow the child process to use the environment to find things --- integration/test_servers_of_happiness.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/integration/test_servers_of_happiness.py b/integration/test_servers_of_happiness.py index c63642066..343172a44 100644 --- a/integration/test_servers_of_happiness.py +++ b/integration/test_servers_of_happiness.py @@ -12,6 +12,7 @@ if PY2: import sys from os.path import join +from os import environ from twisted.internet.error import ProcessTerminated @@ -45,7 +46,8 @@ def test_upload_immutable(reactor, temp_dir, introducer_furl, flog_gatherer, sto sys.executable, '-b', '-m', 'allmydata.scripts.runner', '-d', node_dir, 'put', __file__, - ] + ], + env=environ, ) try: yield proto.done