ignore errors (not ideal)
Signed-off-by: leohoare <leo@insight.co>
This commit is contained in:
parent
3bc0013fbe
commit
a17a10cccf
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue