We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
CI
BUILD_NUMBER
pytest -h
1 parent e19ad1f commit 9749e5cCopy full SHA for 9749e5c
src/_pytest/helpconfig.py
@@ -212,6 +212,11 @@ def showhelp(config: Config) -> None:
212
tw.line()
213
tw.line("Environment variables:")
214
vars = [
215
+ (
216
+ "CI",
217
+ "When truthy, pytest knows it is running in a CI process and does not truncate summary info",
218
+ ),
219
+ ("BUILD_NUMBER", "equivalent to CI"),
220
("PYTEST_ADDOPTS", "Extra command line options"),
221
("PYTEST_PLUGINS", "Comma-separated plugins to load during startup"),
222
("PYTEST_DISABLE_PLUGIN_AUTOLOAD", "Set to disable plugin auto-loading"),
0 commit comments