summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-04-05 21:55:40 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-04-05 21:55:40 -0400
commit72329433e78e57c8589e4797df523bb598190b64 (patch)
tree0120bff33071c3f0e429fde9c4ac6f37eb40d3e4
parent112a11069d4452328e2677d962fc4284392ee5a8 (diff)
downloadsqlalchemy-72329433e78e57c8589e4797df523bb598190b64.tar.gz
- OK, forget it, the DBAPIs, etc. everything else is also site-wide,
we need site-packages
-rw-r--r--tox.ini8
1 files changed, 3 insertions, 5 deletions
diff --git a/tox.ini b/tox.ini
index 0dd6ae5f4..2bb589207 100644
--- 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