docs: Add a bit more to the doc for --lfnf

This commit is contained in:
Sean Malloy 2023-08-28 15:15:21 -07:00
parent 75e815f6c1
commit e431b8e69d
1 changed files with 2 additions and 2 deletions

View File

@ -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
--------------------------------