Browse Source

Detect blocking calls in coroutines using BlockBuster

pull/13290/head
cbornet 3 weeks ago
parent
commit
4843e41114
  1. 1
      requirements-tests.txt
  2. 18
      tests/conftest.py
  3. 6
      tests/test_tutorial/conftest.py

1
requirements-tests.txt

@ -11,6 +11,7 @@ PyJWT==2.8.0
pyyaml >=5.3.1,<7.0.0
passlib[bcrypt] >=1.7.2,<2.0.0
inline-snapshot==0.19.3
blockbuster >= 1.5.23,<1.6.0
# types
types-ujson ==5.10.0.20240515
types-orjson ==3.6.2

18
tests/conftest.py

@ -0,0 +1,18 @@
import pytest
from blockbuster import blockbuster_ctx
@pytest.fixture(autouse=True)
def blockbuster():
with blockbuster_ctx("fastapi") as bb:
bb.functions["io.BufferedReader.read"].can_block_in(
"starlette/testclient.py", "receive"
)
for func in [
"os.stat",
"io.TextIOWrapper.read",
]:
bb.functions[func].can_block_in(
"pydantic/networks.py", "import_email_validator"
)
yield bb

6
tests/test_tutorial/conftest.py

@ -0,0 +1,6 @@
import pytest
@pytest.fixture(autouse=True)
def deactivate_blockbuster(blockbuster):
blockbuster.deactivate()
Loading…
Cancel
Save