From 5ac0a7a71f5720969e9d48e3845a4f3f08fbc456 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 28 Aug 2023 20:25:58 -0300 Subject: [PATCH] Update src/_pytest/cacheprovider.py --- src/_pytest/cacheprovider.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/_pytest/cacheprovider.py b/src/_pytest/cacheprovider.py index f752065dc..50a474a29 100755 --- a/src/_pytest/cacheprovider.py +++ b/src/_pytest/cacheprovider.py @@ -499,10 +499,10 @@ def pytest_addoption(parser: Parser) -> None: dest="last_failed_no_failures", choices=("all", "none"), default="all", - help="With ``--lf``, determines whether to execute tests when there" - "are no previously (known) failures or when no" - "cached ``lastfailed`` data was found." - "``all`` (the default) runs the full test suite again." + help="With ``--lf``, determines whether to execute tests when there " + "are no previously (known) failures or when no " + "cached ``lastfailed`` data was found. " + "``all`` (the default) runs the full test suite again. " "``none`` just emits a message about no known failures and exits successfully.", )