From 0df5561e5d536def3e5d8b58cb8a301bf30d8903 Mon Sep 17 00:00:00 2001 From: burgholzer Date: Wed, 22 Jan 2025 13:08:15 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20fix=20coverage=20configuration?= =?UTF-8?q?=20to=20properly=20exclude=20the=20`literals.py`=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: burgholzer --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8eaf383f..cf077749 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -138,7 +138,7 @@ filterwarnings = [ [tool.coverage] run.source = ["mqt.qcec"] -run.omit = ["src/mqt/qcec/types.py"] +run.omit = ["src/mqt/qcec/literals.py"] report.exclude_also = [ '\.\.\.', 'if TYPE_CHECKING:',