-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
42 lines (37 loc) · 778 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
[tox]
envlist =
py27,cover
[testenv]
commands =
nosetests --ignore-files=django_middleware_test\.py --logging-level=INFO
deps =
nose
[testenv:cover]
basepython =
python2.7
commands =
nosetests --ignore-files=django_middleware_test\.py --logging-level=INFO --with-xunit --with-xcoverage --cover-package=ndb --nocapture --cover-erase --cover-tests --cover-branches
deps =
nose
coverage==3.7.1
nosexcover
[testenv:coveralls]
basepython = {[testenv:cover]basepython}
commands =
{[testenv:cover]commands}
coveralls
deps =
{[testenv:cover]deps}
coveralls
[pep8]
exclude = *.egg/,.*/,cache/*
ignore = E111,E121,E128,E129
max-line-length = 80
verbose = 1
[testenv:lint]
basepython =
python2.7
commands =
pep8
deps =
pep8