forked from kivy/kivy-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
37 lines (33 loc) · 1.01 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
[tox]
skipsdist = True
envlist = pep8
basepython = python3
[testenv]
deps = -r{toxinidir}/requirements.txt
setenv =
PYTHONPATH={toxinidir}
[testenv:pep8]
deps = flake8
commands = flake8 kivy_ios/ tests/ .ci/ setup.py toolchain.py
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
=======
>>>>>>> parent of 64bd692... Flake8 CI fixes (#451)
=======
>>>>>>> parent of 64bd692... Flake8 CI fixes (#451)
=======
>>>>>>> parent of 64bd692... Flake8 CI fixes (#451)
=======
>>>>>>> parent of 64bd692... Flake8 CI fixes (#451)
[flake8]
ignore =
E123, # Closing bracket does not match indentation of opening bracket's line
E124, # Closing bracket does not match visual indentation
E126, # Continuation line over-indented for hanging indent
E226, # Missing whitespace around arithmetic operator
E402, # Module level import not at top of file
E501, # Line too long (82 > 79 characters)
W503, # Line break occurred before a binary operator
W504 # Line break occurred after a binary operator