-
Notifications
You must be signed in to change notification settings - Fork 17
/
tox.ini
44 lines (39 loc) · 939 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
[tox]
envlist =
django111
django111-py35
django20
django21-py37
[testenv]
basepython = python2.7
[testenv:django111]
deps =
coverage
-rcategory/tests/requirements/111.txt
commands =
coverage run manage.py test --settings=category.tests.settings.111
coverage report -m
[testenv:django111-py35]
basepython = python3.5
deps =
coverage
-rcategory/tests/requirements/111.txt
commands =
coverage run manage.py test --settings=category.tests.settings.111
coverage report -m
[testenv:django20]
basepython = python3.5
deps =
coverage
-rcategory/tests/requirements/20.txt
commands =
coverage run manage.py test --settings=category.tests.settings.20
coverage report -m
[testenv:django21-py37]
basepython = python3.7
deps =
coverage
-rcategory/tests/requirements/21.txt
commands =
coverage run manage.py test --settings=category.tests.settings.21
coverage report -m