Skip to content

Commit

Permalink
test: Add html coverage reports from pytest (#1771)
Browse files Browse the repository at this point in the history
* Add pytest tool options for html coverage reports.
  • Loading branch information
matthewfeickert committed Feb 9, 2022
1 parent 9c9d4d0 commit b091985
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Expand Up @@ -47,9 +47,10 @@ addopts = [
"--ignore=binder/",
"--ignore=docs/",
"--cov=pyhf",
"--cov-report=term-missing",
"--cov-config=.coveragerc",
"--cov-report=term-missing",
"--cov-report=xml",
"--cov-report=html",
"--doctest-modules",
"--doctest-glob='*.rst'"
]
Expand Down

0 comments on commit b091985

Please sign in to comment.