from _pytest.doctest import DoctestModule
from py.path import local

collect_ignore = ['tests/messages/data', 'setup.py']
babel_path = local(__file__).dirpath().join('babel')


def pytest_collect_file(path, parent):
    if babel_path.common(path) == babel_path:
        if path.ext == ".py":
            if hasattr(DoctestModule, "from_parent"):
                return DoctestModule.from_parent(parent, fspath=path)
            return DoctestModule(path, parent)
