help: display default verbosity (#5998)

This commit is contained in:
Daniel Hahler 2019-10-18 23:34:38 +02:00 committed by GitHub
commit 94c4dd6ad7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -66,7 +66,11 @@ def pytest_addoption(parser):
help="decrease verbosity.",
),
group._addoption(
"--verbosity", dest="verbose", type=int, default=0, help="set verbosity"
"--verbosity",
dest="verbose",
type=int,
default=0,
help="set verbosity. Default is 0.",
)
group._addoption(
"-r",