Skip to main content
Version: 2.0.x (deprecated)

subprocess-environment


Environment settings for forked subprocesses.

Backend: pants.core

Config section: [subprocess-environment]

Basic options

None

Advanced options

env_vars

--subprocess-environment-env-vars="['<str>', '<str>', ...]"
PANTS_SUBPROCESS_ENVIRONMENT_ENV_VARS
default:
[
  "LANG",
  "LC_CTYPE",
  "LC_ALL"
]

Environment variables to set for process invocations. Entries are either strings in the form ENV_VAR=value to set an explicit value; or just ENV_VAR to copy the value from Pants's own environment.

Each ENV_VAR must be one of LANG, LC_CTYPE, LC_ALL, http_proxy, https_proxy, ftp_proxy, all_proxy, no_proxy, HTTP_PROXY, HTTPS_PROXY, FTP_PROXY, ALL_PROXY, NO_PROXY, REQUESTS_CA_BUNDLE.

Deprecated options

lang

--subprocess-environment-lang=<str>
PANTS_SUBPROCESS_ENVIRONMENT_LANG
default: en_US.UTF-8

Override the LANG environment variable for any forked subprocesses.

lc_all

--subprocess-environment-lc-all=<str>
PANTS_SUBPROCESS_ENVIRONMENT_LC_ALL
default: None

Override the LC_ALL environment variable for any forked subprocesses.