Jonas L 2024-06-22 13:31:13 +02:00 committed by GitHub
parent d99d6e1a68
commit 6958070eec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 3 deletions

View File

@ -119,9 +119,10 @@ def run_liq_server(
if process.poll() is not None:
pytest.fail(process.stdout.read())
yield manager
process.terminate()
try:
yield manager
finally:
process.terminate()
@pytest.fixture(