forked from caktus/django-timepiece
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
77 lines (68 loc) · 1.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tox]
envlist =
py26-1.4, py26-1.5,
py27-1.4, py27-1.5
# Note: sadly, this project is not yet compatible with Django trunk/1.6-to-be.
# Test environments for trunk are defined below, but not included in this list.
[default]
deps =
django-jenkins==0.12.1
pylint==0.25.1
coverage==3.5.2
pep8==0.6.1
psycopg2==2.5
Mock==1.0.1
django-bootstrap-toolkit==2.5.6
factory-boy==2.1.1
[testenv]
basepython = python2.7
deps =
django==1.4.3
{[default]deps}
setenv =
DJANGO_SETTINGS_MODULE = example_project.example_project.settings.local
PYTHON_PATH = {toxinidir}
commands = {envpython} run_tests.py {posargs}
[testenv:py26-1.4]
basepython = python2.6
setenv =
{[testenv]setenv}
TESTENV = py26-1.4
deps =
django>=1.4,<1.5
{[default]deps}
[testenv:py26-1.5]
basepython = python2.6
setenv =
{[testenv]setenv}
TESTENV = py26-1.5
deps =
django>=1.5,<1.6
{[default]deps}
[testenv:py26-trunk]
basepython = python2.6
setenv =
{[testenv]setenv}
TESTENV = py26-trunk
deps = https://github.com/django/django/zipball/master
{[default]deps}
[testenv:py27-1.4]
setenv =
{[testenv]setenv}
TESTENV= py27-1.4
deps =
django>=1.4,<1.5
{[default]deps}
[testenv:py27-1.5]
setenv =
{[testenv]setenv}
TESTENV = py27-1.5
deps =
django>=1.5,<1.6
{[default]deps}
[testenv:py27-trunk]
setenv =
{[testenv]setenv}
TESTENV = py27-trunk
deps = https://github.com/django/django/zipball/master
{[default]deps}