Skip to content

Commit

Permalink
chore: Bump ruff from 0.8.6 to 0.9.1 (#513)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Eran Kampf <eran@ekampf.com>
  • Loading branch information
dependabot[bot] and ekampf authored Jan 13, 2025
1 parent 37adbf5 commit 13528a4
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
40 changes: 20 additions & 20 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pytest-randomly = "^3.16.0"
pytest-sugar = "^1.0.0"
pyupgrade = "^3.19.1"
responses = "^0.25.3"
ruff = "^0.8.6"
ruff = "^0.9.1"
syrupy = "^4.8.1"
types-croniter = "^5.0.1.20241205"
types-requests = "^2.32.0.20241016"
Expand Down
6 changes: 3 additions & 3 deletions tests_integration/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ def load_stdout(stdout):


def assert_log_message_starts_with(logs, message):
assert any(
log["message"].startswith(message) for log in logs
), f"Could not find log message starting with '{message}'"
assert any(log["message"].startswith(message) for log in logs), (
f"Could not find log message starting with '{message}'"
)


def kubectl(command: str, input: str | None = None) -> subprocess.CompletedProcess:
Expand Down

0 comments on commit 13528a4

Please sign in to comment.