[pypy-svn] r70229 - pypy/trunk/pypy/tool

arigo at codespeak.net arigo at codespeak.net
Mon Dec 21 15:59:23 CET 2009


Author: arigo
Date: Mon Dec 21 15:59:22 2009
New Revision: 70229

Modified:
   pypy/trunk/pypy/tool/package.py
Log:
Skip the tests corresponding to this file as long as
they fail on Python 2.4 and 2.5.


Modified: pypy/trunk/pypy/tool/package.py
==============================================================================
--- pypy/trunk/pypy/tool/package.py	(original)
+++ pypy/trunk/pypy/tool/package.py	Mon Dec 21 15:59:22 2009
@@ -14,6 +14,8 @@
 import tarfile
 from pypy.tool.udir import udir
 
+if sys.version_info < (2,6): py.test.skip("requires 2.6 so far")
+
 def ignore_patterns(*patterns):
     """Function that can be used as copytree() ignore parameter.
 



More information about the Pypy-commit mailing list