From fbc48afccdf47de43fba73f2bc0eaf43a3f7b310 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Fri, 13 Oct 2023 11:28:41 +0200 Subject: [PATCH] Fix `coverage` config (#16258) fixes #16255 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index de32618f1a39..c43253fed982 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -109,13 +109,13 @@ xfail_strict = true [tool.coverage.run] branch = true -source = "mypy" +source = ["mypy"] parallel = true [tool.coverage.report] show_missing = true skip_covered = true -omit = 'mypy/test/*' +omit = ['mypy/test/*'] exclude_lines = [ '\#\s*pragma: no cover', '^\s*raise AssertionError\b',