From a7feb53975e15e69794357cbfa7e7b1d877d33cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 21:42:45 +0000 Subject: [PATCH 1/2] build(deps): bump ruff in the test-and-lint-dependencies group Bumps the test-and-lint-dependencies group with 1 update: [ruff](https://github.com/astral-sh/ruff). Updates `ruff` from 0.14.14 to 0.15.0 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.14.14...0.15.0) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: test-and-lint-dependencies ... Signed-off-by: dependabot[bot] --- requirements/lint.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/lint.txt b/requirements/lint.txt index c4fed54c08..a18ac0b258 100644 --- a/requirements/lint.txt +++ b/requirements/lint.txt @@ -6,7 +6,7 @@ # Lint tools # (We are not so interested in the specific versions of the tools: the versions # are pinned to prevent unexpected linting failures when tools update) -ruff==0.14.14 +ruff==0.15.0 mypy==1.19.1 zizmor==1.22.0 From 927a598877aebb5d76d6622da5f6fc6b982e23ed Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Tue, 17 Feb 2026 12:15:12 +0200 Subject: [PATCH 2/2] tests: Keep linter happy Signed-off-by: Jussi Kukkonen --- tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.py b/tests/utils.py index f4310d0aec..cc35af0447 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -115,7 +115,7 @@ def wait_for_server( pass except OSError as e: # ECONNREFUSED is expected while the server is not started - if e.errno not in [errno.ECONNREFUSED]: + if e.errno != errno.ECONNREFUSED: logger.warning( "Unexpected error while waiting for server: %s", str(e) )