From 421e0e7bc9b9d8ede0694483b7c71a3d79dd1063 Mon Sep 17 00:00:00 2001 From: Lily Wu <96460328+lwu1822@users.noreply.github.com> Date: Sat, 14 Feb 2026 06:00:20 -0800 Subject: [PATCH] doc: fixed typo in file name format (#14191) (cherry picked from commit 2f09ddc84ea6a7ccd56f19b0b998c8d2c51a4652) --- doc/en/how-to/usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/how-to/usage.rst b/doc/en/how-to/usage.rst index 94e6d94d834..35b07bfe8c1 100644 --- a/doc/en/how-to/usage.rst +++ b/doc/en/how-to/usage.rst @@ -7,7 +7,7 @@ How to invoke pytest .. seealso:: :ref:`Complete pytest command-line flags reference ` In general, pytest is invoked with the command ``pytest`` (see below for :ref:`other ways to invoke pytest -`). This will execute all tests in all files whose names follow the form ``test_*.py`` or ``\*_test.py`` +`). This will execute all tests in all files whose names follow the form ``test_*.py`` or ``*_test.py`` in the current directory and its subdirectories. More generally, pytest follows :ref:`standard test discovery rules `.