From a236d4ad5ad2d41f7eae1572dc519a2619429adb Mon Sep 17 00:00:00 2001 From: Kori Kuzma Date: Mon, 16 Feb 2026 10:04:46 -0500 Subject: [PATCH] fix: fix pytest-cov settings @jsstevenson pointed this out in cat-vrs-python (https://github.com/ga4gh/cat-vrs-python/pull/34) --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bb9f2eb..1995e64 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -151,6 +151,6 @@ where = ["src"] [tool.setuptools_scm] [tool.pytest.ini_options] -addopts = "--cov-report=term-missing --cov=ga4gh" -testpaths = ["tests", "src"] +addopts = "--cov-report=term-missing --cov=ga4gh.va_spec" +testpaths = ["tests"] doctest_optionflags = "ALLOW_UNICODE ALLOW_BYTES ELLIPSIS IGNORE_EXCEPTION_DETAIL NORMALIZE_WHITESPACE"