-
Notifications
You must be signed in to change notification settings - Fork 30
/
tox.ini
65 lines (50 loc) · 1.2 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tox]
downloadcache = {toxworkdir}/cache/
envlist =
py27-django15,
py27-django16,
py27-django17,
py27-django18,
py27-django19,
py35-django18,
py35-django19
[testenv]
changedir = tests
commands =
python -E basic_tests/main.py test app
python -E autoimport_tests/main.py test app
python -E middleware_test/main.py test middlewares
python -E mirror_settings/main.py test test_app
python -E pathpy_test/main.py test test_app
# python -E model_tests/test_app.py test app
[django15]
deps = -rrequirements1.5.txt
[django16]
deps = -rrequirements1.6.txt
[django17]
deps = -rrequirements1.7.txt
[django18]
deps = -rrequirements1.8.txt
[django19]
deps = -rrequirements1.9.txt
[testenv:py27-django15]
basepython = python2.7
deps = {[django15]deps}
[testenv:py27-django16]
basepython = python2.7
deps = {[django16]deps}
[testenv:py27-django17]
basepython = python2.7
deps = {[django17]deps}
[testenv:py27-django18]
basepython = python2.7
deps = {[django18]deps}
[testenv:py27-django19]
basepython = python2.7
deps = {[django19]deps}
[testenv:py35-django18]
basepython = python3.5
deps = {[django18]deps}
[testenv:py35-django19]
basepython = python3.5
deps = {[django19]deps}