From ef9db0db45cfb884a4cf372b6c57e12fafdba0bd Mon Sep 17 00:00:00 2001 From: "Michael J. Williams" Date: Tue, 16 Jun 2026 17:23:02 +0100 Subject: [PATCH] TST: fix pytest-cov settings in pyproject.toml --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f0287e93..6f29533a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -80,7 +80,7 @@ version_scheme = "release-branch-semver" [tool.pytest.ini_options] addopts = [ "-ra", - "--cov=nessai", + "--cov=src/nessai", "--import-mode=importlib", ] testpaths = [ @@ -89,7 +89,7 @@ testpaths = [ [tool.coverage.run] source = [ - "nessai" + "src/nessai" ] [tool.coverage.report]