modinfo in the translate toolkit is now a 2-tuple containing the mtime and
[pootle.git] / conftest.py
blob2cccf842da60a6ed7e46f93051513a4260da8031
1 # customization of py.test collection
3 import py.test.collect
5 class PootleDirectory(py.test.collect.Directory):
6 def recfilter(self, path):
7 return super(PootleDirectory, self).recfilter(path) and \
8 path.basename not in ('po')
10 Directory = PootleDirectory