pyproject.toml: consolidate the config from `.coveragerc`
- ID
f930327- date
2026-09-12 19:38:47+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
374f81d- message
pyproject.toml: consolidate the config from `.coveragerc`- changed files
2 files, 1 addition, 10 deletions
Changed files
.coveragerc (122 → 0)
diff --git a/.coveragerc b/.coveragerc
deleted file mode 100644
index 4e72b86..0000000
--- a/.coveragerc
+++ /dev/null
@@ -1,9 +0,0 @@
-[run]
-branch = True
-include =
- concurrently.py
- test_concurrently.py
-
-[report]
-show_missing = True
-fail_under = 100
pyproject.toml (506 → 507)
diff --git a/pyproject.toml b/pyproject.toml
index 9dc18de..0407125 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.coverage.run]
branch = true
-source = ["concurrently.py", "test_concurrently.py"]
+include = ["concurrently.py", "test_concurrently.py"]
[tool.coverage.report]
show_missing = true