def header(self, colitems): |
super(TerminalSession, self).header(colitems) |
self.out.sep("=", "test process starts") |
option = self.config.option |
modes = [] |
for name in 'looponfailing', 'exitfirst', 'nomagic': |
if getattr(option, name): |
modes.append(name) |
|
|
|
|
|
|
self.out.line("executable: %s (%s)" % |
(py.std.sys.executable, repr_pythonversion())) |
rev = py.__pkg__.getrev() |
self.out.line("using py lib: %s <rev %s>" % ( |
-> py.path.local(py.__file__).dirpath(), rev)) |
|
if self.config.option.traceconfig or self.config.option.verbose: |
|
for x in colitems: |
self.out.line("test target: %s" %(x.fspath,)) |
|
conftestmodules = self.config._conftest.getconftestmodules(None) |
for i,x in py.builtin.enumerate(conftestmodules): |
self.out.line("initial conf %d: %s" %(i, x.__file__)) |
|
|
|
|
|
|
|
self.out.line() |
self.starttime = now() |