-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathtox.ini
71 lines (57 loc) · 970 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tox]
envlist = py26, py27
[testenv]
commands=
python --version
nosetests tests []
flake8 --config .flake8 django_settings tests
recreate=False
# Py26
# [testenv:py26-django-1.3]
# basepython = python2.6
# deps=
# nose
# flake8
# importlib
# django==1.3
# [testenv:py26-django-1.4]
# basepython = python2.6
# deps=
# nose
# flake8
# importlib
# django==1.4
# [testenv:py26-django-1.5]
# basepython = python2.6
# deps=
# nose
# flake8
# importlib
# django==1.5
# end / Py26
# Py27
[testenv:py27-django-1.3]
basepython = python2.7
deps=
nose
flake8
django==1.3
[testenv:py27-django-1.4]
basepython = python2.7
deps=
nose
flake8
django==1.4
[testenv:py27-django-1.5]
basepython = python2.7
deps=
nose
flake8
django==1.5
# end / Py27
# Py32
# NOTE: django 1.3, 1.4, 1.5 does not work with python 3
# end / Py32
# Py33
# NOTE: django 1.3, 1.4, 1.5 does not work with python 3
# end / Py33