forked from terrene-foundation/kailash-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
49 lines (45 loc) · 976 Bytes
/
setup.cfg
File metadata and controls
49 lines (45 loc) · 976 Bytes
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
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks integration tests that might require external services
io: marks tests that perform file I/O
addopts =
--tb=short
--strict-markers
-v
[coverage:run]
source = src/kailash
omit =
src/kailash/cli/*
tests/*
*/__init__.py
*/conftest.py
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise NotImplementedError
raise ImportError
except ImportError
DEBUG
if TYPE_CHECKING:
class .*\bProtocol\):
@(abc\.)?abstractmethod
pass
\.\.\.
[isort]
profile = black
line_length = 88
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
[flake8]
max-line-length = 88
extend-ignore = E203
per-file-ignores = __init__.py:F401
exclude = .venv,venv,build,dist