11 lines
341 B
Python
11 lines
341 B
Python
import py
|
|
mydir = py.path.local(__file__).dirpath()
|
|
|
|
def pytest_runtest_setup(item):
|
|
if isinstance(item, py.test.collect.Function):
|
|
if not item.fspath.relto(mydir):
|
|
return
|
|
mod = item.getparent(py.test.collect.Module).obj
|
|
if hasattr(mod, 'hello'):
|
|
py.builtin.print_("mod.hello", mod.hello)
|