ignore errors (not ideal)

Signed-off-by: leohoare <leo@insight.co>
This commit is contained in:
leohoare 2025-06-23 22:37:39 +08:00
parent 3bc0013fbe
commit a17a10cccf
1 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,4 @@
# ruff: noqa: S602, S607
import subprocess import subprocess
@ -25,6 +26,8 @@ def cov():
def e2e(): def e2e():
"""Run end-to-end tests.""" """Run end-to-end tests."""
subprocess.run("git submodule update --init --recursive", shell=True, check=True) 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("behave tests/features/", shell=True, check=True)
subprocess.run("rm tests/features/*.feature", shell=True, check=True) subprocess.run("rm tests/features/*.feature", shell=True, check=True)