From 38649ca35a7687eb4304265528447ec0e1ee1e53 Mon Sep 17 00:00:00 2001 From: Ryan Marten Date: Mon, 16 Dec 2024 21:55:08 -0800 Subject: [PATCH] all tests working --- build_pkg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_pkg.py b/build_pkg.py index 80de2549..b9a6e57e 100644 --- a/build_pkg.py +++ b/build_pkg.py @@ -81,7 +81,7 @@ def nextjs_build(): def run_pytest(): print("Running pytest") try: - run_command("pytest", cwd="tests") + run_command("pytest") except subprocess.CalledProcessError: print("Pytest failed. Aborting build.") sys.exit(1)