Update src/_pytest/cacheprovider.py

This commit is contained in:
Bruno Oliveira 2023-08-28 20:25:58 -03:00 committed by GitHub
parent e121c50235
commit 5ac0a7a71f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -499,10 +499,10 @@ def pytest_addoption(parser: Parser) -> None:
dest="last_failed_no_failures", dest="last_failed_no_failures",
choices=("all", "none"), choices=("all", "none"),
default="all", default="all",
help="With ``--lf``, determines whether to execute tests when there" help="With ``--lf``, determines whether to execute tests when there "
"are no previously (known) failures or when no" "are no previously (known) failures or when no "
"cached ``lastfailed`` data was found." "cached ``lastfailed`` data was found. "
"``all`` (the default) runs the full test suite again." "``all`` (the default) runs the full test suite again. "
"``none`` just emits a message about no known failures and exits successfully.", "``none`` just emits a message about no known failures and exits successfully.",
) )