forked from aimhubio/aim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 898 Bytes
/
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
[build-system]
requires = ["setuptools", "Cython == 3.0.0a11", "aimrocks == 0.4.0"]
[tool.pytest.ini_options]
addopts = ["--pdbcls=IPython.terminal.debugger:Pdb", "-p no:cacheprovider"]
[tool.coverage.run]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"@(abc.)?abstractmethod",
"except ImportError:"
]
include = ["src/aimcore/web/*", "src/python/aim/_core/*", "src/python/aim/_sdk/*"]
omit = ["src/aimcore/web/migrations/*"]
[tool.flake8]
max-line-length = 120
ignore = ["E712", "F405"]
exclude = [
"**/build/*",
"**/node_modules/",
"**/migrations/",
"**/legacy/",
"**/_legacy_repo",
"aimcore/web/ui",
"**/*pb2.py",
"**/*pb2_grpc.py"
]
per-file-ignores = [
"__init__.py:F401,F403"
]