forked from chibisov/drf-extensions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
63 lines (49 loc) · 1.03 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
[tox]
envlist =
django.1.11
django.1.10
django.1.9
django.1.8.lts
[testenv]
deps=
-rtests_app/requirements.txt
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/tests_app
commands=
{envbindir}/django-admin.py test --settings=settings {posargs}
[testenv:drf.3.5.3]
deps=
{[testenv]deps}
Django>=1.10,<1.11
djangorestframework>=3.5.3
django-guardian==1.4.4
[testenv:drf.3.4.0]
deps=
{[testenv]deps}
Django>=1.10,<1.11
djangorestframework>=3.4.0
django-guardian==1.4.4
[testenv:django.1.11]
deps=
{[testenv]deps}
Django>=1.11,<2.0
djangorestframework>=3.3.3
django-guardian==1.4.4
[testenv:django.1.10]
deps=
{[testenv]deps}
Django>=1.10a1,<1.11
djangorestframework>=3.3.3
django-guardian==1.4.4
[testenv:django.1.9]
deps=
{[testenv]deps}
Django>=1.9,<1.10
djangorestframework>=3.3.3
django-guardian==1.4.4
[testenv:django.1.8.lts]
deps=
{[testenv]deps}
Django>=1.8,<1.9
djangorestframework>=3.3.2,<3.7
django-guardian==1.4.4