forked from kmmbvnr/django-jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
95 lines (82 loc) · 2.31 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[tox]
envlist = django19_py34, django18_py34, django18_py27, django17
# typical configuration
[testenv]
usedevelop = True
commands = python tests/manage.py {posargs:jenkins --enable-coverage --pep8-max-line-length=150 --liveserver=localhost:8090-8100 --output-dir=reports/{envname}}
python -c 'import os; path="C:\\nppdf32Log\\debuglog.txt"; os.path.exists(path) and os.unlink(path)'
deps = -r{toxinidir}/requirements.txt
ipdb
passenv=HOME
[testenv:django19_py34]
basepython = python3.4
deps = django==1.9
pylint==1.5.1
pylint-django==0.7.1
coverage==4.0.3
pyflakes==1.0.0
pep8==1.6.2
flake8==2.5.1
selenium==2.48.0
pyvirtualdisplay==0.1.5
ipdb
[testenv:django18_py34]
basepython = python3.4
deps = django==1.8.7
pylint==1.5.1
pylint-django==0.7.1
coverage==4.0.3
pyflakes==1.0.0
pep8==1.6.2
flake8==2.5.1
selenium==2.48.0
pyvirtualdisplay==0.1.5
ipdb
[testenv:django18_py27]
basepython = python2.7
deps = django==1.8.7
pylint==1.5.1
pylint-django==0.7.1
coverage==4.0.3
pyflakes==1.0.0
pep8==1.6.2
flake8==2.5.1
selenium==2.48.0
pyvirtualdisplay==0.1.5
[testenv:django17]
basepython = python2.7
deps = django==1.7.11,<1.8a1
pylint==1.5.1
pylint-django==0.7.1
coverage==4.0.3
pyflakes==1.0.0
pep8==1.6.2
flake8==2.5.1
selenium==2.48.0
pyvirtualdisplay==0.1.5
# going to be relesed configuration, good to be worked
# [testenv:beta]
# basepython = python3.3
# deps = https://github.com/django/django/archive/1.7c2.zip
# pylint==1.4.0
# pylint-django==0.5.5
# coverage==4.0a1
# pyflakes
# pep8
# flake8
# selenium
# pyvirtualdisplay
# ipdb
# check on latest version control, probably everything is broken
[testenv:alpha]
basepython = python3.3
deps = https://github.com/django/django/archive/master.zip
hg+http://hg.logilab.org/pylint
git+https://github.com/landscapeio/pylint-django
hg+http://bitbucket.org/ned/coveragepy
git+https://github.com/pyflakes/pyflakes.git
git+https://github.com/jcrocholl/pep8.git
hg+https://bitbucket.org/tarek/flake8
selenium
pyvirtualdisplay
ipdb