Skip to content

Commit 3b4071e

Browse files
committed
helpconfig: add missing envvars to --help
1 parent 115b870 commit 3b4071e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/_pytest/helpconfig.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,9 @@ def showhelp(config: Config) -> None:
239239
("PYTEST_PLUGINS", "Comma-separated plugins to load during startup"),
240240
("PYTEST_DISABLE_PLUGIN_AUTOLOAD", "Set to disable plugin auto-loading"),
241241
("PYTEST_DEBUG", "Set to enable debug tracing of pytest's internals"),
242+
("PYTEST_DEBUG_TEMPROOT", "Override the system temporary directory"),
243+
("PYTEST_THEME", "The Pygments style to use for code output"),
244+
("PYTEST_THEME_MODE", "Set the PYTEST_THEME to be either 'dark' or 'light'"),
242245
]
243246
for name, help in vars:
244247
tw.line(f" {name:<24} {help}")

0 commit comments

Comments
 (0)