forked from bread-and-pepper/django-userena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
47 lines (39 loc) · 1.12 KB
/
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
[tox]
downloadcache = {toxworkdir}/cache/
envlist =
; py26 support was dropped in django1.7
py26-django{14,15,16},
; py27 has the widest django support
py27-django{14,15,16,17},
; py32, py33 support was officially introduced in django1.5
py32-django{15,16,17},
py33-django{15,16,17},
; py34 support was officially introduced in django1.7
py34-django{17}
[testenv]
usedevelop = True
deps =
south
django14: django==1.4.16
django15: django==1.5.11
django16: django==1.6.8
django17: django==1.7.1
coverage: django==1.7.1
coverage: coverage==3.7.1
coverage: coveralls
basepython =
py34: python3.4
py33: python3.3
py32: python3.2
py27: python2.7
py26: python2.6
commands={envpython} userena/runtests/runtests.py userena umessages
[testenv:py27-django14]
install_command = pip install --no-binary=Django {opts} {packages}
[testenv:py26-django14]
install_command = pip install --no-binary=Django {opts} {packages}
[testenv:coverage]
basepython = python2.7
commands=
coverage run --source userena userena/runtests/runtests.py userena umessages
coveralls