forked from kmmbvnr/django-jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
48 lines (41 loc) · 1.27 KB
/
Copy pathtox.ini
File metadata and controls
48 lines (41 loc) · 1.27 KB
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
[tox]
envlist = py27, py33, beta, omega
# 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
# minimal support configuration
[testenv:omega]
basepython = python2.6
deps = django==1.6.7 # rq.filter: >=1.6,<1.7
pylint==1.3.1
coverage
pyflakes
pep8
flake8
selenium
# 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.2.1
coverage
pyflakes
pep8
flake8
selenium
ipdb
# check on latest version control, probably everything is broken
[testenv:alpha]
basepython = python3.3
deps = git+https://github.com/django/django.git
hg+http://hg.logilab.org/pylint
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
ipdb