re-adding py.test.mark as documented (!) by adding pytest_keyword plugin

--HG--
branch : 1.0.x
This commit is contained in:
holger krekel
2009-06-28 13:19:43 +02:00
parent e412f695dd
commit bd8f68555d
7 changed files with 90 additions and 9 deletions

View File

@@ -237,13 +237,15 @@ keyword.
By default, all filename parts and
class/function names of a test function are put into the set
of keywords for a given test. You may specify additional
of keywords for a given test. You can specify additional
kewords like this::
@py.test.mark(webtest=True)
def test_send_http():
...
and then use those keywords to select tests.
disabling a test class
----------------------