From 71aee34c9a26249fd7b26a1a5513831e7882e00e Mon Sep 17 00:00:00 2001 From: Edwin Gonzales Date: Fri, 3 Jul 2026 17:39:08 +0800 Subject: [PATCH] chore(codecov): ignore module manifests in coverage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Odoo reads __manifest__.py via ast.literal_eval — the file is never imported, so its lines can never be executed. coverage.py still lists it (source-based collection), making every PR that adds a module show a spurious missing line. --- codecov.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/codecov.yml b/codecov.yml index fb1cdba1..b154e23e 100644 --- a/codecov.yml +++ b/codecov.yml @@ -28,5 +28,6 @@ comment: ignore: - "**/tests/**" + - "**/__manifest__.py" - "**/migrations/**" - "scripts/**"