-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (43 loc) · 1.26 KB
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
[project]
name = "datalogicengine"
version = "4.3.0"
description = "DataLogicEngine backend and repository tooling workspace"
requires-python = ">=3.11"
# Runtime dependency authority is requirements.txt plus its generated,
# hash-locked requirements.lock. This root project metadata deliberately carries
# no second dependency declaration. Editable installs must install the lock first.
dependencies = []
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
asyncio_mode = "auto"
filterwarnings = [
"ignore::DeprecationWarning:pytest_asyncio.*:",
"ignore:websockets\\.legacy is deprecated.*:DeprecationWarning:websockets\\.legacy:",
"ignore:datetime\\.datetime\\.utcnow\\(\\) is deprecated.*:DeprecationWarning:flask_login\\.login_manager:",
]
testpaths = ["tests"]
[tool.coverage.run]
source = ["backend", "."]
omit = [
"*/tests/*",
"*/test_*.py",
"*/__pycache__/*",
"*/venv/*",
"*/env/*",
"*/migrations/*",
"*/config.py",
"*/.venv/*",
]
[tool.coverage.report]
precision = 2
show_missing = true
skip_covered = false
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"@abstractmethod",
]