[pypy-svn] r58791 - pypy/branch/2.5-merge/lib-python

hpk at codespeak.net hpk at codespeak.net
Wed Oct 8 10:22:08 CEST 2008


Author: hpk
Date: Wed Oct  8 10:22:05 2008
New Revision: 58791

Modified:
   pypy/branch/2.5-merge/lib-python/conftest.py
Log:
don't do any setup for running regression tests


Modified: pypy/branch/2.5-merge/lib-python/conftest.py
==============================================================================
--- pypy/branch/2.5-merge/lib-python/conftest.py	(original)
+++ pypy/branch/2.5-merge/lib-python/conftest.py	Wed Oct  8 10:22:05 2008
@@ -67,6 +67,11 @@
         self.core = core
         assert self.getfspath().check(), "%r not found!" % (basename,)
 
+    def setup(self):
+        pass
+    def teardown(self):
+        pass
+
     def usemodules(self):
         return self._usemodules #+ pypy_option.usemodules
     usemodules = property(usemodules)



More information about the Pypy-commit mailing list