Files
wehub-resource-sync 0418dc5cf9
CI / Python tests (3.10) (push) Has been cancelled
CI / Python tests (3.11) (push) Has been cancelled
CI / Python quality (push) Has been cancelled
CI / Frontend typecheck (push) Has been cancelled
Autopilot Pages / deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:45:00 +08:00

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()