spelling: evaluable
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
d6cc4d3b5c
commit
3f6acbb8a9
|
@ -1919,7 +1919,7 @@ All the command-line flags can be obtained by running ``pytest --help``::
|
||||||
|
|
||||||
general:
|
general:
|
||||||
-k EXPRESSION Only run tests which match the given substring
|
-k EXPRESSION Only run tests which match the given substring
|
||||||
expression. An expression is a Python evaluatable
|
expression. An expression is a Python evaluable
|
||||||
expression where all names are substring-matched
|
expression where all names are substring-matched
|
||||||
against test names and their parent classes.
|
against test names and their parent classes.
|
||||||
Example: -k 'test_method or test_other' matches all
|
Example: -k 'test_method or test_other' matches all
|
||||||
|
|
|
@ -78,7 +78,7 @@ def pytest_addoption(parser: Parser) -> None:
|
||||||
default="",
|
default="",
|
||||||
metavar="EXPRESSION",
|
metavar="EXPRESSION",
|
||||||
help="Only run tests which match the given substring expression. "
|
help="Only run tests which match the given substring expression. "
|
||||||
"An expression is a Python evaluatable expression "
|
"An expression is a Python evaluable expression "
|
||||||
"where all names are substring-matched against test names "
|
"where all names are substring-matched against test names "
|
||||||
"and their parent classes. Example: -k 'test_method or test_"
|
"and their parent classes. Example: -k 'test_method or test_"
|
||||||
"other' matches all test functions and classes whose name "
|
"other' matches all test functions and classes whose name "
|
||||||
|
|
Loading…
Reference in New Issue