From 3254d179a06c3fd16f54c6fc0740561438165b78 Mon Sep 17 00:00:00 2001 From: "Bradley A. Thornton" Date: Wed, 12 Jun 2024 07:49:38 -0700 Subject: [PATCH] Move the coverage file into the .cache directory. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9042496..77fde9c 100644 --- a/tox.ini +++ b/tox.ini @@ -40,7 +40,7 @@ commands = coverage run -m pytest {posargs:-n auto} coverage combine -q --data-file={env:COVERAGE_COMBINED} coverage xml --data-file={env:COVERAGE_COMBINED} -o {envdir}/coverage.xml --fail-under=0 - coverage lcov --data-file={env:COVERAGE_COMBINED} -o {toxinidir}/.coverage/lcov.info --fail-under=0 + coverage lcov --data-file={env:COVERAGE_COMBINED} -o {toxinidir}/.cache/.coverage/lcov.info --fail-under=0 coverage report --data-file={env:COVERAGE_COMBINED} allowlist_externals = git