diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-01-24 19:29:26 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-01-24 19:29:26 -0500 |
commit | 0ad5599229583caf1c29c84b128e0de712786ee2 (patch) | |
tree | 26e043b8c37a61f4ba61a6b4363fda819589f956 | |
parent | 6b0515039214fa16aa83c9f8164d7011e4748175 (diff) | |
download | sqlalchemy-0ad5599229583caf1c29c84b128e0de712786ee2.tar.gz |
- unfortunately we have to force the paths to be shorter due to
https://github.com/pypa/virtualenv/issues/596
-rw-r--r-- | tox.ini | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,6 +1,6 @@ [tox] -envlist = py{26,27,34,35}-sqla_{cext,nocext}-db_{default,sqlitepg,mysql,oracle,mssql} +envlist = py{26,27,34,35}-{cext,nocext}-{default,sqlitepg,mysql,oracle,mssql} [testenv] deps=pytest @@ -19,7 +19,7 @@ deps=pytest setenv= PYTHONPATH= PYTHONNOUSERSITE=1 - sqla_nocext: DISABLE_SQLALCHEMY_CEXT=1 + nocext: DISABLE_SQLALCHEMY_CEXT=1 # tox as of 2.0 blocks all environment variables from the @@ -29,11 +29,11 @@ passenv=ORACLE_HOME NLS_LANG commands= - db_{default}: python -m pytest -n4 --dropfirst {posargs} - db_{sqlitepg}: python -m pytest -n4 --dropfirst --db sqlite --db postgresql {posargs} - db_{mysql}: python -m pytest -n4 --dropfirst --db mysql --db pymysql {posargs} - db_{oracle}: python -m pytest -n4 --dropfirst --db oracle {posargs} - db_{mssql}: python -m pytest -n4 --dropfirst --db pyodbc --db pymssql {posargs} + {default}: python -m pytest -n4 --dropfirst {posargs} + {sqlitepg}: python -m pytest -n4 --dropfirst --db sqlite --db postgresql {posargs} + {mysql}: python -m pytest -n4 --dropfirst --db mysql --db pymysql {posargs} + {oracle}: python -m pytest -n4 --dropfirst --db oracle {posargs} + {mssql}: python -m pytest -n4 --dropfirst --db pyodbc --db pymssql {posargs} [testenv:coverage] |