Browse Source

🎨 Auto format

pull/15388/head
pre-commit-ci-lite[bot] 2 months ago
committed by GitHub
parent
commit
51e0e5a6c9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      tests/test_depends_deadlock.py

5
tests/test_depends_deadlock.py

@ -4,7 +4,6 @@ import threading
import time import time
from collections.abc import Iterator from collections.abc import Iterator
import pytest
from fastapi import Depends, FastAPI from fastapi import Depends, FastAPI
from httpx import ASGITransport, AsyncClient from httpx import ASGITransport, AsyncClient
from pydantic import BaseModel from pydantic import BaseModel
@ -54,7 +53,9 @@ def test_depends_deadlock() -> None:
proc.join(timeout=10) proc.join(timeout=10)
try: try:
assert not proc.is_alive(), "Process is still alive after timeout, likely due to a deadlock" assert not proc.is_alive(), (
"Process is still alive after timeout, likely due to a deadlock"
)
finally: finally:
proc.kill() # Ensure the process is terminated if it's still alive proc.kill() # Ensure the process is terminated if it's still alive

Loading…
Cancel
Save