-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
tox.ini
30 lines (26 loc) · 1.03 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
[tox]
envlist = py39
[testenv]
setenv =
PYTHONPATH = {toxinidir}
deps = pytest
commands =
pytest -sv tests/ --cov={toxinidir}/kaggler
- codecov
[flake8]
max-line-length = 120
ignore = D001, # lines should not be longer than 79 characters, plus some exceptions
E121, # Continuation line under-indented for hanging indent
E123, # Closing bracket does not match indentation of opening bracket's line
E126, # Continuation line over-indented for hanging indent
E128, # Continuation line under-indented for visual indent
E129, # Visually indented line with same indent as next logical line
E226, # Missing whitespace around arithmetic operator
E24, #
E704, # Multiple statements on one line (def)
E731, # Do not assign a lambda expression, use a def
E741, # Ambiguous variable name
W503 # Line break before binary operator
W504 # Line break after binary operator
per-file-ignores = __init__.py:F401
builtins = __builtins__