From ef8ea472cc926cd1eda842ca828db6aaafc3fb8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Sat, 20 Dec 2025 16:00:54 -0500 Subject: [PATCH] MNT: Prepend `src` for the coverage path Prepend `src` for the coverage path; otherwise, the coverage of the modules `analysis.featuring.py`, `analysis.filtering.py`, and `cli.run.py` are reported to be 0%, even if there they are covered extensively by existing tests. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 47d2d97..c148c20 100644 --- a/tox.ini +++ b/tox.ini @@ -41,7 +41,7 @@ commands_pre = uv pip install datalad uv tool install --with-executables-from=datalad-osf,datalad-next datalad commands = - pytest -sv --doctest-modules --cov niquery --cov-report xml \ + pytest -sv --doctest-modules --cov src/niquery --cov-report xml \ --junitxml=test-results.xml -v src test {posargs:-n auto} [testenv:docs]