From 82d2784b73bdf7f272e9e180ce52a9b20fc10e0c Mon Sep 17 00:00:00 2001 From: Mark Piper Date: Fri, 16 Aug 2024 18:00:40 -0600 Subject: [PATCH] Fix path to coverage configuration It was in setup.py, but got moved to pyproject.toml in d1affcf. --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 21f2d67..45dbd03 100644 --- a/noxfile.py +++ b/noxfile.py @@ -26,7 +26,7 @@ def test(session: nox.Session) -> None: if "CI" in os.environ: args.append(f"--cov-report=xml:{ROOT.absolute()!s}/coverage.xml") - args.append(f"--cov-config={ROOT.absolute()!s}/setup.cfg") + args.append(f"--cov-config={ROOT.absolute()!s}/pyproject.toml") session.run("pytest", *args) if "CI" not in os.environ: