forked from kivy/buildozer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
38 lines (35 loc) · 831 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
[tox]
envlist = pep8
[testenv]
deps =
pytest
coverage
commands =
pytest tests/
coverage run --branch --source=buildozer -m pytest {posargs:tests/}
coverage report -m
[testenv:pep8]
deps = flake8
commands = flake8 buildozer/ tests/
[flake8]
ignore =
# continuation line missing indentation or outdented
E122,
# continuation line over-indented for hanging indent
E126,
# continuation line over-indented for visual indent
E127,
# continuation line under-indented for visual indent
E128,
# continuation line unaligned for hanging indent
E131,
# module level import not at top of file
E402,
# line too long
E501,
# do not use bare 'except'
E722,
# line break before binary operator
W503,
# line break after binary operator
W504