forked from PrefectHQ/prefect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
84 lines (66 loc) · 1.56 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
77
78
79
80
81
82
83
84
[tool:pytest]
addopts = -rfEsx
norecursedirs = *.egg-info .git .mypy_cache node_modules .pytest_cache .vscode server/*
env =
SKIP_DOCKER_ENVIRONMENT_TESTS = True
PREFECT__USER_CONFIG_PATH=""
usedevelop = True
[isort]
skip = __init__.py,/engine/executors/dask.py
multi_line_output = 3
[mypy]
ignore_missing_imports = True
disallow_any_explicit = False
disallow_untyped_defs = True
disallow_untyped_calls = True
check_untyped_defs = True
[mypy-prefect.*._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-server.*]
ignore_errors = True
# marshmallow's typing sometimes fails mypy so
# it's just not worth it
[mypy-prefect.*.serialization.*]
ignore_errors = True
[mypy-prefect.tasks.*]
ignore_errors = True
[mypy-prefect.utilities.gcp.*]
ignore_errors = True
[mypy-tests.*]
# don't check pytest function signatures but check interior
disallow_untyped_defs = False
check_untyped_defs = True
[coverage:paths]
source=
src/prefect
*/site-packages/prefect
[coverage:run]
omit=
# special files
tests/*
**__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 =