Skip to content

Commit

Permalink
Fix: Coverage only looked at test files
Browse files Browse the repository at this point in the history
  • Loading branch information
hoh committed Jun 14, 2024
1 parent 3e82f1d commit b44f454
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}"
test-cov = "pytest --cov {args:src tests}"
cov-report = [
"- coverage combine",
"coverage report",
Expand Down

0 comments on commit b44f454

Please sign in to comment.