Better document -k partial matching (#7610)

This commit is contained in:
Yutaro Ikeda 2020-08-05 03:30:08 +09:00 committed by GitHub
parent d688fefecb
commit 84c4b64354
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -201,6 +201,11 @@ Or to select "http" and "quick" tests:
You can use ``and``, ``or``, ``not`` and parentheses.
In addition to the test's name, ``-k`` also matches the names of the test's parents (usually, the name of the file and class it's in),
attributes set on the test function, markers applied to it or its parents and any :attr:`extra keywords <_pytest.nodes.Node.extra_keyword_matches>`
explicitly added to it or its parents.
Registering markers
-------------------------------------