-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 883 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (40 loc) · 883 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
[project]
name = "dead-mans-switch"
version = "0.1.0"
description = "GitHub Actions-powered dead man's switch emailer"
requires-python = ">=3.13"
dependencies = []
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pyyaml>=6.0.3",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = [
"-v",
"--strict-markers",
"--cov=dead_mans_switch",
"--cov-report=term-missing",
"--cov-branch",
"--cov-fail-under=100",
]
markers = [
"bug: regression test for a previously-shipped bug. Locate quickly with `pytest -m bug`.",
]
[tool.coverage.run]
branch = true
source = ["dead_mans_switch"]
[tool.coverage.report]
show_missing = true
skip_covered = false
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"raise NotImplementedError",
]
partial_branches = [
"pragma: no branch",
]