forked from tuanchris/dune-weaver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 855 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (37 loc) · 855 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
[project]
name = "dune-weaver"
version = "1.0.0"
description = "Web-controlled kinetic sand table system"
license = "GPL-3.0-or-later"
requires-python = ">=3.9"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
markers = [
"hardware: marks tests requiring real hardware (skip in CI)",
"slow: marks slow tests",
]
addopts = [
"-v",
"--tb=short",
"--strict-markers",
]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.coverage.run]
relative_files = true
source = ["modules", "main.py"]
omit = [
"tests/*",
"*/__pycache__/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"raise NotImplementedError",
"if __name__ == .__main__.:",
]
show_missing = true