We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bc0013 commit a17a10cCopy full SHA for a17a10c
scripts/scripts.py
@@ -1,3 +1,4 @@
1
+# ruff: noqa: S602, S607
2
import subprocess
3
4
@@ -25,6 +26,8 @@ def cov():
25
26
def e2e():
27
"""Run end-to-end tests."""
28
subprocess.run("git submodule update --init --recursive", shell=True, check=True)
- 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
+ )
32
subprocess.run("behave tests/features/", shell=True, check=True)
33
subprocess.run("rm tests/features/*.feature", shell=True, check=True)
0 commit comments