Allow the child process to use the environment to find things

This commit is contained in:
Jean-Paul Calderone 2023-03-14 17:20:44 +00:00
parent a2a21c3730
commit 9393c9ad10

View File

@ -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