Skip to content

Commit 0402123

Browse files
committed
Test on PyPy
1 parent c3c766d commit 0402123

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ python:
55
- "3.2"
66
- "3.3"
77
- "3.4"
8+
- "pypy"
89
env:
910
- DJANGO=1.6
1011
- DJANGO=1.7

tox.ini

+20-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ envlist =
1010
py32-1.6, py32-1.7, py32-master,
1111
py33-1.6, py33-1.7, py33-master,
1212
py34-1.7, py34-master
13+
pypypy-1.6, pypypy-1.7, pypypy-master,
1314

1415
[testenv]
1516
deps =
@@ -101,4 +102,22 @@ deps =
101102
basepython = python3.4
102103
deps =
103104
{[testenv]deps}
104-
https://github.com/django/django/tarball/master
105+
https://github.com/django/django/tarball/master
106+
107+
[testenv:pypypy-1.7]
108+
basepython = pypy
109+
deps =
110+
{[testenv]deps}
111+
Django>1.7,<1.8
112+
113+
[testenv:pypypy-1.6]
114+
basepython = pypy
115+
deps =
116+
{[testenv]deps}
117+
Django>1.6,<1.7
118+
119+
[testenv:pypypy-master]
120+
basepython = pypy
121+
deps =
122+
{[testenv]deps}
123+
https://github.com/django/django/tarball/master

0 commit comments

Comments
 (0)