From a2ab075fa2b3f4b160b430318a486c1ab2cd983b Mon Sep 17 00:00:00 2001 From: Francesco Bartoli Date: Sat, 12 Oct 2024 16:48:49 +0200 Subject: [PATCH] Fix tests --- noxfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 01cf0cd..a2da033 100644 --- a/noxfile.py +++ b/noxfile.py @@ -160,7 +160,8 @@ def tests(session: NoxPoetrySession) -> None: session.install(".") session.install("coverage[toml]", "pytest", "pygments", "schemathesis") try: - session.run("coverage", "run", "--parallel", "-m", "pytest", *session.posargs) + # session.run("coverage", "run", "--parallel", "-m", "pytest", *session.posargs) + session.run("py.test", *session.posargs) finally: if session.interactive: session.notify("coverage", posargs=[])