forked from sqlalchemy/sqlalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
132 lines (109 loc) · 3.32 KB
/
pyproject.toml
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=47",
"wheel>=0.34",
"cython>=0.29.24; python_implementation == 'CPython'", # Skip cython when using pypy
]
[tool.black]
line-length = 79
target-version = ['py37']
[tool.zimports]
black-line-length = 79
keep-unused-type-checking = true
[tool.slotscheck]
exclude-modules = '^sqlalchemy\.testing'
[tool.pytest.ini_options]
addopts = "--tb native -v -r sfxX --maxfail=250 -p warnings -p logging --strict-markers"
norecursedirs = "examples build doc lib"
python_files = "test_*.py"
minversion = "6.2"
filterwarnings = [
# NOTE: additional SQLAlchemy specific filters in
# sqlalchemy/testing/warnings.py. SQLAlchemy modules cannot be named
# here as pytest loads them immediately, which breaks coverage as well
# as sys.path adjustments in conftest.py
"error::DeprecationWarning:test",
"error::DeprecationWarning:sqlalchemy"
]
markers = [
"memory_intensive: memory / CPU intensive suite tests",
"mypy: mypy integration / plugin tests",
"timing_intensive: time-oriented tests that are sensitive to race conditions",
"backend: tests that should run on all backends; typically dialect-sensitive",
"sparse_backend: tests that should run on multiple backends, not necessarily all",
]
[tool.pyright]
include = [
"lib/sqlalchemy/engine/base.py",
"lib/sqlalchemy/engine/events.py",
"lib/sqlalchemy/engine/interfaces.py",
"lib/sqlalchemy/engine/_py_row.py",
"lib/sqlalchemy/engine/result.py",
"lib/sqlalchemy/engine/row.py",
"lib/sqlalchemy/engine/util.py",
"lib/sqlalchemy/engine/url.py",
"lib/sqlalchemy/pool/",
"lib/sqlalchemy/event/",
"lib/sqlalchemy/events.py",
"lib/sqlalchemy/exc.py",
"lib/sqlalchemy/log.py",
"lib/sqlalchemy/inspection.py",
"lib/sqlalchemy/schema.py",
"lib/sqlalchemy/types.py",
"lib/sqlalchemy/util/",
]
reportPrivateUsage = "none"
reportUnusedClass = "none"
reportUnusedFunction = "none"
[tool.mypy]
mypy_path = "./lib/"
show_error_codes = true
strict = false
incremental = true
# disabled checking
[[tool.mypy.overrides]]
module="sqlalchemy.*"
ignore_errors = true
warn_unused_ignores = false
strict = true
# some debate at
# https://github.com/python/mypy/issues/8754.
# implicit_reexport = true
# individual packages or even modules should be listed here
# with strictness-specificity set up. there's no way we are going to get
# the whole library 100% strictly typed, so we have to tune this based on
# the type of module or package we are dealing with
[[tool.mypy.overrides]]
# ad-hoc ignores
module = [
"sqlalchemy.engine.reflection", # interim, should be strict
]
ignore_errors = true
# strict checking
[[tool.mypy.overrides]]
module = [
"sqlalchemy.connectors.*",
"sqlalchemy.engine.*",
"sqlalchemy.ext.associationproxy",
"sqlalchemy.pool.*",
"sqlalchemy.event.*",
"sqlalchemy.events",
"sqlalchemy.exc",
"sqlalchemy.inspection",
"sqlalchemy.schema",
"sqlalchemy.types",
]
ignore_errors = false
strict = true
# partial checking, internals can be untyped
[[tool.mypy.overrides]]
module = [
"sqlalchemy.util.*",
"sqlalchemy.engine.cursor",
"sqlalchemy.engine.default",
]
ignore_errors = false
allow_untyped_defs = true
check_untyped_defs = false
allow_untyped_calls = true