Files
nanobot/tests/conftest.py
T

10 lines
193 B
Python
Raw Normal View History

2026-03-13 14:06:22 +08:00
"""Pytest configuration for nanobot tests."""
import pytest
@pytest.fixture(autouse=True)
def enable_asyncio_auto_mode():
"""Auto-configure asyncio mode for all async tests."""
pass