now that pytest_runtest_logstart is sent to the master again,

disable showing of filenames explicitely with the terminalreporter
This commit is contained in:
holger krekel
2013-11-21 15:00:06 +01:00
parent a488cc5add
commit 8146b27671

View File

@@ -62,6 +62,10 @@ def pytest_configure(config, __multicall__):
from xdist.dsession import DSession from xdist.dsession import DSession
session = DSession(config) session = DSession(config)
config.pluginmanager.register(session, "dsession") config.pluginmanager.register(session, "dsession")
tr = config.pluginmanager.getplugin("terminalreporter")
tr.showfspath = False
def check_options(config): def check_options(config):
if config.option.numprocesses: if config.option.numprocesses: