[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
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