mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-05 09:59:24 +00:00
Allow the child process to use the environment to find things
This commit is contained in:
parent
a2a21c3730
commit
9393c9ad10
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user