forked from fschulze/sqlalchemy_schemadisplay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
39 lines (32 loc) · 674 Bytes
/
tox.ini
File metadata and controls
39 lines (32 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tox]
[testenv]
commands = py.test --cov-report html --cov-report term --cov sqlalchemy_schemadisplay {posargs}
[basedeps]
deps =
pytest
pytest-cov
[testenv:sqla06-py27]
basepython = python2.7
deps =
{[basedeps]deps}
sqlalchemy>0.6dev,<0.7dev
[testenv:sqla07-py27]
basepython = python2.7
deps =
{[basedeps]deps}
sqlalchemy>0.7dev,<0.8dev
[testenv:sqla08-py27]
basepython = python2.7
deps =
{[basedeps]deps}
sqlalchemy>0.8dev,<0.9dev
[testenv:sqla09-py27]
basepython = python2.7
deps =
{[basedeps]deps}
sqlalchemy>0.9dev,<1.0dev
[testenv:sqlalchemy-py27]
basepython = python2.7
deps =
{[basedeps]deps}
sqlalchemy>0.9dev