summaryrefslogtreecommitdiff
path: root/conftest.py
blob: 15a589a6c17fe9067f0e493716018914e70bb02e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import sys
from _pytest.doctest import DoctestModule
from py.path import local


PY2 = sys.version_info[0] < 3


collect_ignore = ['tests/messages/data', 'setup.py']


def pytest_collect_file(path, parent):
    babel_path = local(__file__).dirpath().join('babel')
    config = parent.config
    if PY2:
        if babel_path.common(path) == babel_path:
            if path.ext == ".py":
                return DoctestModule(path, parent)