Skip to content

Commit 72e9aec

Browse files
committed
Add pypy compatibility testing, explicitly test django 1.7 branch and master
1 parent 73693ed commit 72e9aec

File tree

2 files changed

+32
-24
lines changed

2 files changed

+32
-24
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
language: python
22
python: 2.7
33
env:
4+
- TOX_ENV=py33-master
45
- TOX_ENV=py33-1.7.x
56
- TOX_ENV=py33-1.6.x
67
- TOX_ENV=py33-1.5.x
8+
- TOX_ENV=pypy-master
9+
- TOX_ENV=pypy-1.7.x
10+
- TOX_ENV=pypy-1.6.x
11+
- TOX_ENV=pypy-1.5.x
12+
- TOX_ENV=py27-master
713
- TOX_ENV=py27-1.7.x
814
- TOX_ENV=py27-1.6.x
915
- TOX_ENV=py27-1.5.x

tox.ini

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -10,63 +10,65 @@ deps15 =
1010
deps16 =
1111
https://github.com/django/django/archive/stable/1.6.x.zip#egg=django
1212
deps17 =
13-
https://github.com/django/django/archive/master.zip#egg=django
13+
https://github.com/django/django/archive/stable/1.7.x.zip#egg=django
14+
master =
15+
https://github.com/django/django/archive/stable/1.7.x.zip#egg=django
1416

1517
[testenv:py26-1.5.x]
1618
basepython = python2.6
17-
deps =
18-
{[testenv]deps15}
19+
deps = {[testenv]deps15}
1920

2021
[testenv:py26-1.6.x]
2122
basepython = python2.6
22-
deps =
23-
{[testenv]deps16}
23+
deps = {[testenv]deps16}
2424

2525
[testenv:py27-1.5.x]
2626
basepython = python2.7
27-
deps =
28-
{[testenv]deps15}
27+
deps = {[testenv]deps15}
2928

3029
[testenv:py27-1.6.x]
3130
basepython = python2.7
32-
deps =
33-
{[testenv]deps16}
31+
deps = {[testenv]deps16}
3432

3533
[testenv:py27-1.7.x]
3634
basepython = python2.7
37-
deps =
38-
{[testenv]deps17}
35+
deps = {[testenv]deps17}
36+
37+
[testenv:py27-master]
38+
basepython = python2.7
39+
deps = {[testenv]master}
3940

4041
[testenv:py33-1.5.x]
4142
basepython = python3.3
42-
deps =
43-
{[testenv]deps15}
43+
deps = {[testenv]deps15}
4444

4545
[testenv:py33-1.6.x]
4646
basepython = python3.3
47-
deps =
48-
{[testenv]deps16}
47+
deps = {[testenv]deps16}
4948

5049
[testenv:py33-1.7.x]
5150
basepython = python3.3
52-
deps =
53-
{[testenv]deps17}
51+
deps = {[testenv]deps17}
52+
53+
[testenv:py33-master]
54+
basepython = python3.3
55+
deps = {[testenv]master}
5456

5557
[testenv:pypy-1.5.x]
5658
basepython = pypy
57-
deps =
58-
{[testenv]deps17}
59-
59+
deps = {[testenv]deps17}
6060

6161
[testenv:pypy-1.6.x]
6262
basepython = pypy
63-
deps =
64-
{[testenv]deps17}
63+
deps = {[testenv]deps17}
6564

6665
[testenv:pypy-1.7.x]
6766
basepython = pypy
68-
deps =
69-
{[testenv]deps17}
67+
deps = {[testenv]deps17}
68+
69+
[testenv:pypy-master]
70+
basepython = pypy
71+
deps = {[testenv]master}
7072

7173
[docs]
7274
commands =

0 commit comments

Comments
 (0)