Add example for k flag

Includes an example of multiple expressions
This commit is contained in:
henrykironde 2019-03-17 20:36:10 -04:00
parent c926999cfb
commit 1e3d5a0412
1 changed files with 1 additions and 0 deletions

View File

@ -52,6 +52,7 @@ def pytest_addoption(parser):
"other' matches all test functions and classes whose name " "other' matches all test functions and classes whose name "
"contains 'test_method' or 'test_other', while -k 'not test_method' " "contains 'test_method' or 'test_other', while -k 'not test_method' "
"matches those that don't contain 'test_method' in their names. " "matches those that don't contain 'test_method' in their names. "
"-k 'not test_method and not test_other' will eliminate the matches. "
"Additionally keywords are matched to classes and functions " "Additionally keywords are matched to classes and functions "
"containing extra names in their 'extra_keyword_matches' set, " "containing extra names in their 'extra_keyword_matches' set, "
"as well as functions which have names assigned directly to them.", "as well as functions which have names assigned directly to them.",