Skip to content

Commit

Permalink
fix(tests): adapt coverage config.
Browse files Browse the repository at this point in the history
  • Loading branch information
qkaiser committed Feb 5, 2024
1 parent e64f1ef commit 65abebf
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,20 @@ norecursedirs = """
tests/integration
"""

[tool.coverage.paths]
source = ["unblob", "tests"]

[tool.coverage.run]
branch = true
parallel = true
sigterm = true
concurrency = ["multiprocessing"]
source = ["unblob", "tests"]

[tool.coverage.report]
skip_covered = true
fail_under = 90

[tool.vulture]
paths = ["unblob/", "vulture_whitelist.py" ]
exclude = ["unblob/testing.py"]
Expand Down

0 comments on commit 65abebf

Please sign in to comment.