Skip to content

Commit cd09534

Browse files
committed
passenv: include CI and TERM by default
TERM was rejected upstream in tox-dev#1441.
1 parent 973be9d commit cd09534

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/tox/config/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -664,6 +664,7 @@ def passenv(testenv_config, value):
664664
value = list(itertools.chain.from_iterable([x.split(" ") for x in value]))
665665

666666
passenv = {
667+
"CI",
667668
"CURL_CA_BUNDLE",
668669
"LANG",
669670
"LANGUAGE",
@@ -672,6 +673,7 @@ def passenv(testenv_config, value):
672673
"PIP_INDEX_URL",
673674
"REQUESTS_CA_BUNDLE",
674675
"SSL_CERT_FILE",
676+
"TERM", # https://github.com/tox-dev/tox/issues/1441
675677
"TOX_WORK_DIR",
676678
str(REPORTER_TIMESTAMP_ON_ENV),
677679
str(PARALLEL_ENV_VAR_KEY_PUBLIC),

0 commit comments

Comments
 (0)