-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtox.ini
More file actions
34 lines (30 loc) · 722 Bytes
/
tox.ini
File metadata and controls
34 lines (30 loc) · 722 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
[tox]
envlist =
django111
django20
django21-py37
[testenv]
basepython = python2.7
[testenv:django111]
deps =
coverage
-rpreferences/tests/requirements/111.txt
commands =
coverage run manage.py test --settings=preferences.tests.settings.111
coverage report -m
[testenv:django20]
basepython = python3.5
deps =
coverage
-rpreferences/tests/requirements/20.txt
commands =
coverage run manage.py test --settings=preferences.tests.settings.20
coverage report -m
[testenv:django21-py37]
basepython = python3.7
deps =
coverage
-rpreferences/tests/requirements/21.txt
commands =
coverage run manage.py test --settings=preferences.tests.settings.21
coverage report -m