Skip to content

Commit

Permalink
Bump blockbuster to 1.5.21
Browse files Browse the repository at this point in the history
  • Loading branch information
cbornet committed Feb 20, 2025
1 parent 168c29b commit 60f0a64
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements/lint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ annotated-types==0.7.0
# via pydantic
async-timeout==5.0.1
# via valkey
blockbuster==1.5.18
blockbuster==1.5.21
# via -r requirements/lint.in
cffi==1.17.1
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ annotated-types==0.7.0
# via pydantic
async-timeout==5.0.1 ; python_version < "3.11"
# via -r requirements/runtime-deps.in
blockbuster==1.5.18
blockbuster==1.5.21
# via -r requirements/test.in
brotli==1.1.0 ; platform_python_implementation == "CPython"
# via -r requirements/runtime-deps.in
Expand Down
3 changes: 2 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,11 @@ def blockbuster(request: pytest.FixtureRequest) -> Iterator[None]:
# https://github.com/aio-libs/aiohttp/issues/10435
for func in ["io.TextIOWrapper.read", "os.stat"]:
bb.functions[func].can_block_in("aiohttp/client_reqrep.py", "update_auth")
for func in ["os.readlink", "os.stat", "os.path.abspath", "os.path.samestat"]:
for func in ["os.getcwd", "os.readlink", "os.stat", "os.path.abspath", "os.path.samestat"]:
bb.functions[func].can_block_in(
"aiohttp/web_urldispatcher.py", "add_static"
)
bb.functions["os.getcwd"].can_block_in("coverage/control.py", "_should_trace")
yield


Expand Down

0 comments on commit 60f0a64

Please sign in to comment.