[pypy-commit] cffi default: use abspath in tests

fijal noreply at buildbot.pypy.org
Wed Apr 3 08:22:50 CEST 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r1225:ba77a83bc4db
Date: 2013-04-03 08:22 +0200
http://bitbucket.org/cffi/cffi/changeset/ba77a83bc4db/

Log:	use abspath in tests

diff --git a/testing/test_zintegration.py b/testing/test_zintegration.py
--- a/testing/test_zintegration.py
+++ b/testing/test_zintegration.py
@@ -7,7 +7,7 @@
     tmpdir = udir.join(name)
     try:
         subprocess.check_call(['virtualenv', '--distribute',
-                               '-p', sys.executable,
+                               '-p', os.path.abspath(sys.executable),
                                str(tmpdir)])
     except OSError as e:
         py.test.skip("Cannot execute virtualenv: %s" % (e,))


More information about the pypy-commit mailing list