You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's already possible to do it via simply modifying os.environ before running the script and then restoring it but it would be nice if script_runner.run(...) had a parameter for that. Actually run_subprocess already does: env argument will be just passed to subprocess.Popen so we just need to implement it for run_inprocess.
The text was updated successfully, but these errors were encountered:
It's already possible to do it via simply modifying
os.environ
before running the script and then restoring it but it would be nice ifscript_runner.run(...)
had a parameter for that. Actuallyrun_subprocess
already does:env
argument will be just passed tosubprocess.Popen
so we just need to implement it forrun_inprocess
.The text was updated successfully, but these errors were encountered: