From: Mike Bayer Date: Sat, 13 Sep 2014 16:12:57 +0000 (-0400) Subject: - start using tox 1.8 so that we can easily get multiple sqla versions off the ground X-Git-Tag: rel_0_7_0~95 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7eacd721f72c9610077acb8ea07ffdc3b24825ea;p=thirdparty%2Fsqlalchemy%2Falembic.git - start using tox 1.8 so that we can easily get multiple sqla versions off the ground --- diff --git a/tox.ini b/tox.ini index 61d44eba..f8780c06 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,12 @@ [tox] -envlist = full +minversion=1.8.dev1 +envlist = py{27,33}-sqla{09,10}, coverage, pep8 [testenv] deps=pytest - flake8 - coverage mock + sqla09: git+http://git.sqlalchemy.org/sqlalchemy.git@rel_0_9 + sqla10: git+http://git.sqlalchemy.org/sqlalchemy.git@master sitepackages=True usedevelop=True @@ -13,18 +14,15 @@ usedevelop=True commands= python -m pytest {posargs} -[testenv:full] - [testenv:coverage] - +deps=coverage commands= - python -m pytest \ - --cov=alembic \ - {posargs} + python -m pytest --cov=alembic {posargs} python -m coverage xml --include=alembic/* [testenv:pep8] +deps=flake8 commands = python -m flake8 {posargs}