fix issue #11507 - part1

This commit is contained in:
Ziad Kermadi 2023-10-26 17:30:36 +02:00
parent c1728948ac
commit 5ae19d0ae6
2 changed files with 3 additions and 0 deletions

1
changelog/11507.doc.rst Normal file
View File

@ -0,0 +1 @@
Added documentation lines for command line options -q (--quiet ).

View File

@ -15,6 +15,8 @@ Examples for modifying traceback printing:
pytest --showlocals # show local variables in tracebacks pytest --showlocals # show local variables in tracebacks
pytest -l # show local variables (shortcut) pytest -l # show local variables (shortcut)
pytest --no-showlocals # hide local variables (if addopts enables them) pytest --no-showlocals # hide local variables (if addopts enables them)
pytest --quiet # quiet - less verbose - mode
pytest -q # quiet - less verbose - mode (shortcut)
pytest --tb=auto # (default) 'long' tracebacks for the first and last pytest --tb=auto # (default) 'long' tracebacks for the first and last
# entry, but 'short' style for the other entries # entry, but 'short' style for the other entries