Skip to content

Commit d68ea59

Browse files
authored
Merge pull request #2911 from theupdateframework/dependabot/pip/test-and-lint-dependencies-3a9aa6d8fd
build(deps): bump ruff from 0.14.14 to 0.15.0 in the test-and-lint-dependencies group
2 parents a982e7f + 927a598 commit d68ea59

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements/lint.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Lint tools
77
# (We are not so interested in the specific versions of the tools: the versions
88
# are pinned to prevent unexpected linting failures when tools update)
9-
ruff==0.14.14
9+
ruff==0.15.0
1010
mypy==1.19.1
1111
zizmor==1.22.0
1212

tests/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def wait_for_server(
115115
pass
116116
except OSError as e:
117117
# ECONNREFUSED is expected while the server is not started
118-
if e.errno not in [errno.ECONNREFUSED]:
118+
if e.errno != errno.ECONNREFUSED:
119119
logger.warning(
120120
"Unexpected error while waiting for server: %s", str(e)
121121
)

0 commit comments

Comments
 (0)