forked from arneb/django-messages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
48 lines (35 loc) · 908 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
48
[tox]
envlist =
py2.7-d1.7, py2.7-d1.8, py2.7-d1.9, py2.7-d1.10, py2.7-d1.11,
py3.5-d1.8, py3.5-d1.9, py3.5-d1.10, py3.5-d1.11
[testenv]
commands = {envpython} tests/manage.py test django_messages --settings=settings
# Python 2.7
[testenv:py2.7-d1.7]
basepython = python2.7
deps = django>=1.7.1,<1.8
[testenv:py2.7-d1.8]
basepython = python2.7
deps = django>=1.8,<1.9
[testenv:py2.7-d1.9]
basepython = python2.7
deps = django>=1.9,<1.9.99
[testenv:py2.7-d1.10]
basepython = python2.7
deps = django>=1.10,<1.10.99
[testenv:py2.7-d1.11]
basepython = python2.7
deps = django>=1.11,<1.11.99
# Python 3.5
[testenv:py3.5-d1.8]
basepython = python3.5
deps = django>=1.8,<1.9
[testenv:py3.5-d1.9]
basepython = python3.5
deps = django>=1.9,<1.9.99
[testenv:py3.5-d1.10]
basepython = python3.5
deps = django>=1.10,<1.10.99
[testenv:py3.5-d1.11]
basepython = python3.5
deps = django>=1.11,<1.11.99