From 769823740a8f5e6b0e37fd05f57f091b56b0ceeb Mon Sep 17 00:00:00 2001 From: Bradley Reynolds Date: Tue, 19 Dec 2023 17:12:41 -0600 Subject: [PATCH] Remove coverage ignore for non-existent file (#752) 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"]