diff --git a/noxfile.py b/noxfile.py index 41b5d66..51e9bfa 100644 --- a/noxfile.py +++ b/noxfile.py @@ -48,7 +48,15 @@ def test_lint(session: nox.Session) -> None: @nox.session(python=PYTHON_VERSIONS) def tests(session: nox.Session) -> None: session.install("-e", ".[tests,topwrap-parse]") - session.run("pytest", "-rs", "--cov-report", "html:cov_html", "--cov=topwrap", "tests") + session.run( + "pytest", + "-rs", + "--cov-report", + "html:cov_html", + "--cov=topwrap", + "--cov-config=pyproject.toml", + "tests", + ) @nox.session