-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.cfg
51 lines (45 loc) · 986 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
39
40
41
42
43
44
45
46
47
48
49
50
51
[build_sphinx]
source-dir = doc/source
build-dir = doc/build
[mypy]
ignore_missing_imports = True
disallow_untyped_defs = True
check_untyped_defs = True
no_implicit_optional = True
warn_unused_configs = True
warn_unused_ignores = True
[tool:pytest]
log_level = DEBUG
markers =
integration: longer-running integration tests
filterwarnings =
ignore::DeprecationWarning
default::DeprecationWarning:autosuspend
addopts =
--cov-config=setup.cfg
[coverage:run]
branch = True
source = autosuspend
[coverage:paths]
source =
src/
*/site-packages/
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if __name__ == "__main__":
if TYPE_CHECKING:
@abc.abstractmethod
[isort]
profile = google
known_local_folder = tests
case_sensitive = false
combine_as_imports = true
force_single_line = false
multi_line_output = 3
include_trailing_comma = true
lines_after_imports = 2
line_length = 88
force_grid_wrap = false
reverse_relative = true