Skip to content

Commit 1a96480

Browse files
committed
Run automated tests on Django 1.7
1 parent b4dcb80 commit 1a96480

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ install:
77
script:
88
- tox
99
env:
10+
- TOXENV=py34-1.7.X
11+
- TOXENV=py33-1.7.X
12+
- TOXENV=py32-1.7.X
13+
- TOXENV=py27-1.7.X
1014
- TOXENV=py33-1.6.X
1115
- TOXENV=py32-1.6.X
1216
- TOXENV=py27-1.6.X

tox.ini

+24
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,30 @@ commands =
5454
django-admin.py --version
5555
make test
5656

57+
[testenv:py34-1.7.X]
58+
basepython = python3.4
59+
deps =
60+
Django>=1.7,<1.8
61+
{[deps]three}
62+
63+
[testenv:py33-1.7.X]
64+
basepython = python3.3
65+
deps =
66+
Django>=1.7,<1.8
67+
{[deps]three}
68+
69+
[testenv:py32-1.7.X]
70+
basepython = python3.2
71+
deps =
72+
Django>=1.7,<1.8
73+
{[deps]three_two}
74+
75+
[testenv:py27-1.7.X]
76+
basepython = python2.7
77+
deps =
78+
Django>=1.7,<1.8
79+
{[deps]two}
80+
5781
[testenv:py33-1.6.X]
5882
basepython = python3.3
5983
deps =

0 commit comments

Comments
 (0)