From bba4c5918e5ade5b9d100ffb8209e50cd5f9cb19 Mon Sep 17 00:00:00 2001 From: Bradley Reynolds Date: Tue, 19 Dec 2023 15:58:27 -0600 Subject: [PATCH] Remove coverage ignore for non-existent file The ignore was added in #1, and was migrated from `.coveragerc` to the `pyproject.toml` in #586, even though the file had already been deleted over a year ago in #376. Since the file no longer exists, the ignore should just be removed. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 735b8ee1..9fa0fb17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,6 @@ exclude = ["docs/_build", "tests/manylinux/build-hello-world.sh", "tests/musllin [tool.coverage.run] branch = true -omit = ["packaging/_compat.py"] [tool.coverage.report] exclude_lines = ["pragma: no cover", "@abc.abstractmethod", "@abc.abstractproperty"]