summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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