Skip to content

Commit ac6a427

Browse files
authored
Fix: Coverage only looked at test files (#128)
1 parent 3e82f1d commit ac6a427

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ dependencies = [
127127
"secp256k1",
128128
]
129129
[tool.hatch.envs.testing.scripts]
130-
test = "pytest {args:tests}"
131-
test-cov = "pytest --cov {args:tests}"
130+
test = "pytest {args:} ./src/ ./tests/ ./examples/"
131+
test-cov = "pytest --cov {args:} ./src/ ./tests/ ./examples/"
132132
cov-report = [
133133
"- coverage combine",
134134
"coverage report",

0 commit comments

Comments
 (0)