-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
47 lines (36 loc) · 910 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
40
41
42
43
44
45
46
47
[tool.mypy]
plugins = ["sqlalchemy.ext.mypy.plugin", "pydantic.mypy"]
[[tool.mypy.overrides]]
module = "motor.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "broadcaster.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "sklearn.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "joblib.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "transformers.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "diffusers.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "minio.*"
ignore_missing_imports = true
[tool.ruff]
extend-select = ["I"]
ignore = ["E501", "E741"]
[tool.ruff.isort]
known-first-party = ["project"]
[tool.pytest.ini_options]
addopts = "--cov --cov-report=term-missing --cov-config=pyproject.toml"
asyncio_mode = "strict"
markers = ["fastapi"]
[tool.coverage.run]
omit = [
"tests/*",
]