forked from flyteorg/flytekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
39 lines (33 loc) · 780 Bytes
/
setup.cfg
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
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 120
[flake8]
max-line-length = 120
extend-ignore = E203, E266, E501, W503, E741
exclude = .svn,CVS,.bzr,.hg,.git,__pycache__,venv/*,src/*,tests/unit/common/protos/*,build
max-complexity=32
per-file-ignores =
*:F821
*/__init__.py: F401
[mypy]
strict_optional = True
ignore_missing_imports = True
files =
flytekit/core/**/*.py,
plugins/**/*.py,
flytekit/types/**/*.py,
tests/flytekit/unit/core/**/*.py
follow_imports = skip
cache_dir = /dev/null
[tool:pytest]
norecursedirs = common workflows spark
log_cli = true
log_cli_level = 20
[coverage:run]
branch = True
[metadata]
license_files = LICENSE