[pypy-svn] r45499 - pypy/dist/pypy/translator/benchmark

arigo at codespeak.net arigo at codespeak.net
Sun Aug 5 14:47:53 CEST 2007


Author: arigo
Date: Sun Aug  5 14:47:52 2007
New Revision: 45499

Added:
   pypy/dist/pypy/translator/benchmark/conftest.py   (contents, props changed)
Log:
Exclude from py.test runs the subdirectories added by 'svn co' from
benchmarks.py.


Added: pypy/dist/pypy/translator/benchmark/conftest.py
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/translator/benchmark/conftest.py	Sun Aug  5 14:47:52 2007
@@ -0,0 +1,7 @@
+import py
+
+class Directory(py.test.collect.Directory):
+
+    def recfilter(self, path):
+        # exclude the subdirectories added by 'svn co' from benchmarks.py
+        return path.check(basename='test')


More information about the pypy-svn mailing list