14 lines
276 B
Python
14 lines
276 B
Python
"""Shared test fixtures."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest_asyncio
|
|
|
|
from openharness.tasks.manager import shutdown_task_manager
|
|
|
|
|
|
@pytest_asyncio.fixture(autouse=True)
|
|
async def _reset_background_task_manager():
|
|
yield
|
|
await shutdown_task_manager()
|