blob: f4c91dc48f44fd70a0248ce13783b9f915d720ea (
plain)
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
|
[tox]
envlist = py26, py27, pypy, py26-django1.4, py27-django1.4, pypy-django1.4, py27-djangotrunk, pypy-djangotrunk
[testenv]
commands = python setup.py test
deps =
django==1.5.1
mock
pytest
[testenv:py26-django1.4]
basepython=python2.6
deps =
django==1.4.5
mock
pytest
[testenv:py27-django1.4]
basepython = python2.7
deps =
django==1.4.5
mock
pytest
[testenv:pypy-django1.4]
basepython = pypy
deps =
django==1.4.5
mock
pytest
[testenv:py27-djangotrunk]
basepython = python2.7
deps =
https://github.com/django/django/tarball/master
mock
pytest
[testenv:pypy-djangotrunk]
basepython = pypy
deps =
https://github.com/django/django/tarball/master
mock
pytest
|