Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r1227:822523ca9c65
Date: 2013-04-03 11:40 +0200
http://bitbucket.org/cffi/cffi/changeset/822523ca9c65/

Log:    Backed out changeset 982940f8c484

        Should not be needed any more after PyPy's revert to "lib-
        python/2.7".

diff --git a/testing/test_zintegration.py b/testing/test_zintegration.py
--- a/testing/test_zintegration.py
+++ b/testing/test_zintegration.py
@@ -3,18 +3,6 @@
 import subprocess
 from testing.udir import udir
 
-def setup_module(mod):
-    if '__pypy__' in sys.builtin_module_names:
-        try:
-            ver = subprocess.check_output(['virtualenv', '--version'])
-        except OSError as e:
-            py.test.skip("Cannot execute virtualenv: %s" % (e,))
-        # this check is absolutely broken, but I can't think about a better
-        # idea
-        if ((ver.startswith('1.9') and ver <= "1.9.1") or
-            ver[2] != '1'):
-            py.test.skip("pypy requires virtualenv >= 1.9.2")
-
 def create_venv(name):
     tmpdir = udir.join(name)
     try:
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to