public
Description: Web-based translation and translation management tool
Homepage: http://translate.sf.net/
Clone URL: git://github.com/julen/pootle.git
pootle / conftest.py
100644 12 lines (7 sloc) 0.283 kb
1
2
3
4
5
6
7
8
9
10
11
12
# customization of py.test collection
 
import py.test.collect
 
class PootleDirectory(py.test.collect.Directory):
    def recfilter(self, path):
        return super(PootleDirectory, self).recfilter(path) and \
               path.basename not in ('po')
 
Directory = PootleDirectory