From a17a10cccf6458132016bfb42fac8018b76f0d1f Mon Sep 17 00:00:00 2001 From: leohoare Date: Mon, 23 Jun 2025 22:37:39 +0800 Subject: [PATCH] ignore errors (not ideal) Signed-off-by: leohoare --- scripts/scripts.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/scripts.py b/scripts/scripts.py index f95ff11..1c1c37e 100644 --- a/scripts/scripts.py +++ b/scripts/scripts.py @@ -1,3 +1,4 @@ +# ruff: noqa: S602, S607 import subprocess @@ -25,6 +26,8 @@ def cov(): def e2e(): """Run end-to-end tests.""" subprocess.run("git submodule update --init --recursive", shell=True, check=True) - subprocess.run("cp spec/specification/assets/gherkin/* tests/features/", shell=True, check=True) + subprocess.run( + "cp spec/specification/assets/gherkin/* tests/features/", shell=True, check=True + ) subprocess.run("behave tests/features/", shell=True, check=True) subprocess.run("rm tests/features/*.feature", shell=True, check=True)