]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- OK, forget it, the DBAPIs, etc. everything else is also site-wide,
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 6 Apr 2015 01:55:40 +0000 (21:55 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 6 Apr 2015 01:55:40 +0000 (21:55 -0400)
we need site-packages

tox.ini

diff --git a/tox.ini b/tox.ini
index 0dd6ae5f4cbbf7202062c49b4c13b86863924f1a..2bb5892070df01e453af3f8bd1a384382ae68991 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -4,7 +4,6 @@ envlist = full,py26,py27,py33,py34
 [testenv]
 deps=pytest
      mock
-     pytest-xdist
 
 # -E     : ignore PYTHON* environment variables (such as PYTHONPATH)
 # -s     : don't add user site directory to sys.path; also PYTHONNOUSERSITE
@@ -13,10 +12,9 @@ setenv=
     PYTHONPATH=
     PYTHONNOUSERSITE=1
 
-# don't accidentally use a SQLAlchemy that's globally installed during pip;
-# unfortunately, without usedevelop, no easy way to use systemwide
-# site-packages for dependencies
-sitepackages=False
+# we need this because our CI has all the DBAPIs and such
+# pre-installed in individual site-packages directories.
+sitepackages=True
 
 # always install fully and use that; this way options like
 # DISABLE_SQLALCHEMY_CEXT are honored