forked from coagulant/django-storages-py3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
47 lines (40 loc) · 842 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
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = django11,django12,django13,django14,django15
[testenv]
deps=boto
[testenv:django11]
deps=
mock==0.8.0
django==1.1.4
boto==2.2.2
commands=python setup.py test
[testenv:django12]
deps=
mock==0.8.0
django==1.2.7
boto==2.2.2
commands=python setup.py test
[testenv:django13]
deps=
mock==0.8.0
django==1.3.1
boto==2.2.2
commands=python setup.py test
[testenv:django14]
deps=
mock==0.8.0
django==1.4
boto==2.2.2
commands=python setup.py test
[testenv:django15]
deps=
mock==0.8.0
git+https://github.com/django/django.git@f23d3c#egg=django
boto==2.2.2
commands=python setup.py test
[testenv:py33]
basepython=python3.3
deps=
git+https://github.com/django/django.git@f23d3c#egg=django
commands=python setup.py test