Skip to content

Commit

Permalink
Fix: Coverage only looked at test files (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoh authored Jun 18, 2024
1 parent 3e82f1d commit ac6a427
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ dependencies = [
"secp256k1",
]
[tool.hatch.envs.testing.scripts]
test = "pytest {args:tests}"
test-cov = "pytest --cov {args:tests}"
test = "pytest {args:} ./src/ ./tests/ ./examples/"
test-cov = "pytest --cov {args:} ./src/ ./tests/ ./examples/"
cov-report = [
"- coverage combine",
"coverage report",
Expand Down

0 comments on commit ac6a427

Please sign in to comment.