![]()
| [uia] / trunk / uia / lib / conftest.py |
Parent Directory
|
Revision Log
r2841@brainchild: ctl | 2007-05-31 16:36:40 -0400 merge conftest changes into trunk
import py.test.collect
class all_in_directory( py.test.collect.Directory ):
def filefilter( self, path ):
if path.check( basename = 'conftest.py' ): return False
if path.check( basename = 'Setup.py' ): return False
if path.check( basename = 'basic_test.py' ): return False
return path.check( ext = ".py" )
Directory = all_in_directory
try:
if 0:
import psyco
psyco.log('/tmp/psyco.log')
psyco.full()
except ImportError:
pass
| Maintained by PDOS | ViewVC Help |
| Powered by ViewVC 1.0.3 |