From 26ae6fab517756f9e4cfea9b57dc0cfc4121a49a Mon Sep 17 00:00:00 2001 From: Alberto Donato Date: Tue, 3 Feb 2026 14:12:55 +0100 Subject: [PATCH] chore: only show files with missing coverage in report ### what don't list all files in coverage report, just the ones missing coverage ### why make output shorter and more relevant ### testing run `just test` ### docs n/a --- pyproject.toml | 4 ++++ setup.cfg | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) delete mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml index 37b107a..4f4b5b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,6 +56,10 @@ include = [ "stacklet/client/platform/vendored/auth_landing_pages/fail.html", ] +[tool.coverage.report] +show_missing = true +skip_covered = true + [tool.ruff] line-length = 100 diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 7da1f96..0000000 --- a/setup.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[flake8] -max-line-length = 100