forked from zodb/relstorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
47 lines (37 loc) · 760 Bytes
/
tox.ini
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
40
41
42
43
44
45
46
47
[tox]
envlist = py27-mysql,py27-postgres,pypy-mysql,pypy-postgres,py37-mysql,py37-postgres
[testenv]
deps =
coverage
.[test]
commands =
coverage run -m zope.testrunner --test-path=src
[testenv:py27-mysql]
deps =
.[mysql]
{[testenv]deps}
[testenv:py27-postgres]
deps =
.[postgresql]
{[testenv]deps}
[testenv:py37-postgres]
deps =
.[postgresql]
{[testenv]deps}
[testenv:py37-mysql]
deps =
.[mysql]
{[testenv]deps}
# coverage is relatively quite slow on PyPy
[testenv:pypy-mysql]
deps =
.[mysql]
{[testenv]deps}
commands =
python -m zope.testrunner --test-path=src
[testenv:pypy-postgres]
deps =
.[postgresql]
{[testenv]deps}
commands =
python -m zope.testrunner --test-path=src