forked from PrefectHQ/prefect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
76 lines (61 loc) · 1.47 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool:pytest]
addopts = -rfEsx
norecursedirs = *.egg-info .git .mypy_cache node_modules .pytest_cache .vscode
env =
SKIP_DOCKER_ENVIRONMENT_TESTS = True
PREFECT__USER_CONFIG_PATH=""
PREFECT__BACKEND="cloud"
usedevelop = True
[isort]
skip = __init__.py,/engine/executors/dask.py
multi_line_output = 3
[mypy]
ignore_missing_imports = True
disallow_untyped_defs = True
check_untyped_defs = True
[mypy-prefect.environments.storage._healthcheck]
ignore_errors = True
[mypy-prefect._siginfo]
ignore_errors = True
[mypy-prefect._version]
ignore_errors = True
[mypy-prefect.agent.local.agent]
ignore_errors = True
[mypy-prefect.cli.*]
ignore_errors = True
[mypy-prefect.contrib.*]
ignore_errors = True
[mypy-prefect.tasks.*]
ignore_errors = True
# marshmallow's typing sometimes fails mypy so it's just not worth it
[mypy-prefect.serialization.*,prefect.utilities.serialization]
ignore_errors = True
[mypy-prefect.utilities.gcp]
ignore_errors = True
[coverage:paths]
source=
src/prefect
*/site-packages/prefect
[coverage:run]
omit=
# special files
tests/*
src/prefect/contrib/*
**__init__.py
*_version.py
*_siginfo.py
# temporary resource manager omit
*resource_manager.py
parallel = True
[coverage:report]
exclude_lines =
if TYPE_CHECKING:
pragma: no cover
coverage: ignore
[versioneer]
VCS = git
style = pep440
versionfile_source = src/prefect/_version.py
versionfile_build = prefect/_version.py
tag_prefix =
parentdir_prefix =