We do not need to check coverage for this project. --- python_discovery-1.3.1/pyproject.toml.orig +++ python_discovery-1.3.1/pyproject.toml @@ -54,8 +54,6 @@ "towncrier>=25.8", ] optional-dependencies.testing = [ - "covdefaults>=2.3", - "coverage>=7.5.4", "pytest>=8.3.5", "pytest-mock>=3.14", "setuptools>=75.1", --- python_discovery-1.3.1/tox.toml.orig +++ python_discovery-1.3.1/tox.toml @@ -10,10 +10,8 @@ pass_env = ["DIFF_AGAINST", "PYTEST_*"] set_env.COVERAGE_FILE = "{work_dir}{/}.coverage.{env_name}" commands = [ - ["coverage", "erase"], [ - "coverage", - "run", + "python", "-m", "pytest", { replace = "posargs", extend = true, default = [ @@ -22,9 +20,6 @@ "tests", ] }, ], - ["coverage", "combine"], - ["coverage", "report"], - ["coverage", "html", "-d", "{env_tmp_dir}{/}htmlcov"], ] [env.fix]