From b0919859ad9bbbed7541a8217576d2594bd5386c Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Wed, 9 Feb 2022 10:15:53 -0600 Subject: [PATCH] test: Add html coverage reports from pytest (#1771) * Add pytest tool options for html coverage reports. --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6616d5863e..285855442d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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'" ]