From 2a2b4cf440626653ba562b468cd45711045f2561 Mon Sep 17 00:00:00 2001 From: Pablo Piskunow Date: Sat, 23 Dec 2023 00:14:05 +0100 Subject: [PATCH] remove building kwant when testing --- noxfile.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/noxfile.py b/noxfile.py index 130d2be..116c857 100644 --- a/noxfile.py +++ b/noxfile.py @@ -213,9 +213,6 @@ def tests(session: Session) -> None: session.install(".") session.install("coverage[toml]", "pytest", "pygments") - # Call the kwant installation functions - build_kwant(session) - try: session.run("coverage", "run", "--parallel", "-m", "pytest", *session.posargs) finally: @@ -242,9 +239,6 @@ def typeguard(session: Session) -> None: session.install(".") session.install("pytest", "typeguard", "pygments") - # Call the kwant installation functions - build_kwant(session) - session.run("pytest", f"--typeguard-packages={package}", *session.posargs)