sources for conftest.py [rev. unknown]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import py
class Directory(py.test.collect.Directory):
    # XXX see in which situations/platforms we want
    #     run tests here 
    #def recfilter(self, path):
    #    if py.std.sys.platform == 'linux2': 
    #        if path.basename == 'greenlet':
    #            return False
    #    return super(Directory, self).recfilter(path)
    
    #def run(self): 
    #    py.test.skip("c-extension testing needs platform selection") 
    pass