Capitalise Python

This commit is contained in:
Hugo van Kemenade 2022-04-23 17:54:09 +03:00
parent 4b3c258627
commit cdcca1533b
2 changed files with 3 additions and 3 deletions

View File

@ -86,7 +86,7 @@ def pytest_addoption(parser: Parser) -> None:
"-W",
"--pythonwarnings",
action="append",
help="set which warnings to report, see -W option of python itself.",
help="set which warnings to report, see -W option of Python itself.",
)
parser.addini(
"filterwarnings",
@ -154,7 +154,7 @@ def pytest_addoption(parser: Parser) -> None:
group.addoption(
"--pyargs",
action="store_true",
help="try to interpret all arguments as python packages.",
help="try to interpret all arguments as Python packages.",
)
group.addoption(
"--ignore",

View File

@ -77,7 +77,7 @@ def pytest_addoption(parser: Parser) -> None:
default="",
metavar="EXPRESSION",
help="only run tests which match the given substring expression. "
"An expression is a python evaluatable expression "
"An expression is a Python evaluatable expression "
"where all names are substring-matched against test names "
"and their parent classes. Example: -k 'test_method or test_"
"other' matches all test functions and classes whose name "