From a484bb78be6c5ca2cf4dc004f9328b98e788ab69 Mon Sep 17 00:00:00 2001 From: Jerry Zhang Date: Thu, 23 Jul 2026 17:02:42 -0700 Subject: [PATCH] build: Keep .coverage file out of repo root Running make test drops a file in repo root. Move that to build/. --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 6906874..b9b5bc1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,3 +9,7 @@ extend-select = ["I"] [tool.ruff.lint.isort] known-first-party = ["revup"] + +[tool.coverage.run] +# Keep the coverage data file out of the repo root. +data_file = "build/.coverage"