*Not documented*
def skipbykeyword(self, keyword):
origin: test.collect.Collector
where:
function source:
def skipbykeyword(self, keyword):
if not keyword:
return
chain = self.listchain()
for key in filter(None, keyword.split()):
eor = key[:1] == '-'
if eor:
key = key[1:]
if not (eor ^ self._matchonekeyword(key, chain)):
py.test.skip("test not selected by keyword %r" %(keyword,))
called in /home/johnny/projects/merlinux/py/dist/py/test/collect.py
traceback test.collect.Module.skipbykeyword.0
called in /home/johnny/projects/merlinux/py/dist/py/test/collect.py
traceback test.collect.Module.skipbykeyword.1
called in /home/johnny/projects/merlinux/py/dist/py/test/collect.py