From e4d1e3d7c2f3679be5520f6041c991bceb3ca763 Mon Sep 17 00:00:00 2001 From: ibizaman Date: Fri, 11 Jul 2025 09:53:27 +0200 Subject: [PATCH] use exec to run python playwright commands --- test/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common.nix b/test/common.nix index dc79f72..fa9cdb9 100644 --- a/test/common.nix +++ b/test/common.nix @@ -281,7 +281,7 @@ in for line in u['nextPageExpect']: print(f"Running: {line}") print(f"Page has title: {page.title()}") - eval(line) + exec(line) finally: context.tracing.stop(path=f"trace/{i}.zip")