Skip to content

Commit 8390ecd

Browse files
dependabot[bot]rubenfonsecaleandrodamascena
authored
chore(deps-dev): bump ruff from 0.0.284 to 0.0.285 (#2977)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ruben Fonseca <rubefons@amazon.com> Co-authored-by: Leandro Damascena <lcdama@amazon.pt>
1 parent 725f7ac commit 8390ecd

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

poetry.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ mypy = "^1.1.1"
9393
types-python-dateutil = "^2.8.19.6"
9494
httpx = ">=0.23.3,<0.25.0"
9595
sentry-sdk = "^1.22.2"
96-
ruff = ">=0.0.272,<0.0.285"
96+
ruff = ">=0.0.272,<0.0.286"
9797
retry2 = "^0.9.5"
9898

9999
[tool.coverage.run]

tests/e2e/utils/lambda_layer/powertools_layer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ def build(self) -> str:
3636
self.before_build()
3737

3838
if self._has_source_changed():
39-
subprocess.run(self.build_command, shell=True)
39+
subprocess.run(self.build_command, shell=True, check=True)
4040

4141
self.after_build()
4242

4343
return str(self.output_dir)
4444

4545
def after_build(self):
46-
subprocess.run(self.cleanup_command, shell=True)
46+
subprocess.run(self.cleanup_command, shell=True, check=True)
4747

4848
def _has_source_changed(self) -> bool:
4949
"""Hashes source code and

0 commit comments

Comments
 (0)