From e431b8e69d6ebf0fc2407d2a142da6a8cc424ce1 Mon Sep 17 00:00:00 2001 From: Sean Malloy Date: Mon, 28 Aug 2023 15:15:21 -0700 Subject: [PATCH] docs: Add a bit more to the doc for --lfnf --- doc/en/how-to/cache.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/en/how-to/cache.rst b/doc/en/how-to/cache.rst index 9446c404c..88a149990 100644 --- a/doc/en/how-to/cache.rst +++ b/doc/en/how-to/cache.rst @@ -182,8 +182,8 @@ failures or when no cached ``lastfailed`` data was found. .. code-block:: bash - pytest --last-failed --last-failed-no-failures all # run the full test suite again (default behavior) - pytest --last-failed --last-failed-no-failures none # runs no tests, emits a message about no known failures and exits successfully + pytest --last-failed --last-failed-no-failures all # when there are no known test failures, runs the full test suite again (default behavior) + pytest --last-failed --last-failed-no-failures none # when there are no known test failures, runs no tests, emits a message about no known failures and exits successfully The new config.cache object --------------------------------