Skip to content

Commit a17a10c

Browse files
committed
ignore errors (not ideal)
Signed-off-by: leohoare <[email protected]>
1 parent 3bc0013 commit a17a10c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/scripts.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ruff: noqa: S602, S607
12
import subprocess
23

34

@@ -25,6 +26,8 @@ def cov():
2526
def e2e():
2627
"""Run end-to-end tests."""
2728
subprocess.run("git submodule update --init --recursive", shell=True, check=True)
28-
subprocess.run("cp spec/specification/assets/gherkin/* tests/features/", shell=True, check=True)
29+
subprocess.run(
30+
"cp spec/specification/assets/gherkin/* tests/features/", shell=True, check=True
31+
)
2932
subprocess.run("behave tests/features/", shell=True, check=True)
3033
subprocess.run("rm tests/features/*.feature", shell=True, check=True)

0 commit comments

Comments
 (0)