diff options
Diffstat (limited to 'yarn')
-rwxr-xr-x | yarn | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -317,17 +317,17 @@ class YarnRunner(cliapp.Application): '''Return a clean environment for running tests.''' whitelisted = [ - 'TERM', - 'USER', - 'USERNAME', 'PATH', - 'HOME', - 'LOGNAME', ] hardcoded = { + 'TERM': 'dumb', 'SHELL': '/bin/sh', 'LC_ALL': 'C', + 'USER': 'tomjon', + 'USERNAME': 'tomjon', + 'LOGNAME': 'tomjon', + 'HOME': '/this/path/does/not/exist', } env = {} |