Skip to content

Commit

Permalink
Merge pull request #738 from onekey-sec/pytest-cov-4.1.0
Browse files Browse the repository at this point in the history
chore(deps): upgrade pytest-cov to 4.1.0, pytest to 8.0.0
  • Loading branch information
qkaiser authored Feb 5, 2024
2 parents 075dd14 + 65abebf commit 0dc4bb5
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 31 deletions.
56 changes: 28 additions & 28 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 17 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ pyfatfs = "^1.0.5"
optional = true

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
pytest = "^8.0.0"
pyright = "^1.1.349"
pre-commit = "^3.5.0"
pytest-cov = "^3.0.0"
ruff = ">=0.1.13,<0.3.0"
pytest-cov = ">=3,<5"
ruff = "^0.1.13"
pyyaml = "^6.0.1"
atheris = { version = "^2.3.0", python = "<3.12" }

Expand Down 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 0dc4bb5

Please sign in to comment.