[svn r63908] first step in only allowing keyword arguments to plugin calls

--HG--
branch : trunk
This commit is contained in:
hpk
2009-04-09 18:55:11 +02:00
parent f8fc229917
commit fb7ff9a8c2
6 changed files with 28 additions and 14 deletions

View File

@@ -61,7 +61,7 @@ class TerminalReporter:
self._tw.sep(sep, title, **markup)
def getcategoryletterword(self, rep):
res = self.config.api.pytest_report_teststatus(rep)
res = self.config.api.pytest_report_teststatus(rep=rep)
if res:
return res
for cat in 'skipped failed passed ???'.split():