-
Notifications
You must be signed in to change notification settings - Fork 93
/
setup.cfg
67 lines (56 loc) · 1.38 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
[tool:pytest]
addopts = -rfEsx
norecursedirs =
*.egg-info
.git
.mypy_cache
.pytest_cache
.vscode
__pycache__
node_modules
testpaths =
tests
env =
PREFECT_SERVER_TESTING = 1
PREFECT_SERVER__DEBUG = true
PREFECT__USER_CONFIG_PATH=""
PYTHONASYNCIODEBUG = 1
markers =
integration_test: mark a test as an integration test (run whenever `-m integration_test` is passed)
service_test: mark a test as a service test (run whenever `-m service_test` is passed)
migration_test: mark a test as a database migration test (run whenever `-m migration_test` is passed)
[isort]
skip = __init__.py
skip_glob=*alembic/versions*
multi_line_output = 3
[mypy]
disallow_any_explicit = False
; strict_optional = False
disallow_untyped_defs = True
disallow_untyped_calls = True
check_untyped_defs = True
# ignore_missing_imports = True
[mypy-tests.*]
# don't check pytest function signatures but check interior
disallow_untyped_defs = False
check_untyped_defs = True
[coverage:run]
omit=
# special files
tests/*
*_version.py
services/*
source = src/prefect_server
parallel = False
[coverage:report]
exclude_lines =
if TYPE_CHECKING:
pragma: no cover
coverage: ignore
[versioneer]
VCS = git
style = pep440
versionfile_source = src/prefect_server/_version.py
versionfile_build = prefect_server/_version.py
tag_prefix =
parentdir_prefix =