shift reporting info generation away from terminal reporting time, simplify code.

also get rid of redundant 'shortrepr' on collect/test reports
and rename reportinfo to "location" in some places

--HG--
branch : trunk
This commit is contained in:
holger krekel
2010-09-26 16:23:44 +02:00
parent 7d1585215d
commit 1c020c3d32
21 changed files with 255 additions and 308 deletions

View File

@@ -6,9 +6,9 @@ import inspect
from py._plugin import hookspec
default_plugins = (
"default python runner pdb capture mark terminal skipping tmpdir monkeypatch "
"recwarn pastebin unittest helpconfig nose assertion genscript "
"junitxml doctest keyword").split()
"default terminal python runner pdb capture mark skipping tmpdir monkeypatch "
"recwarn pastebin unittest helpconfig nose assertion genscript "
"junitxml doctest keyword").split()
def check_old_use(mod, modname):
clsname = modname[len('pytest_'):].capitalize() + "Plugin"