Skip to content

Commit b92b17a

Browse files
Running make is safe.
1 parent d82f64b commit b92b17a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def iam_role(iam_client: BaseClient) -> Generator[str]:
133133

134134
@pytest.fixture(scope="session")
135135
def lambda_zip() -> Path:
136-
build_result = subprocess.run(["make", "build"], capture_output=True, text=True, check=False)
136+
build_result = subprocess.run(["make", "build"], capture_output=True, text=True, check=False) # Noqa: S603, S607
137137
assert build_result.returncode == 0, f"'make build' failed: {build_result.stderr}"
138138
return Path("dist/lambda.zip")
139139

0 commit comments

Comments
 (0)