spotify-mcp-server / tests /conftest.py
LeoWalker's picture
Implement nine-tool Spotify MCP v2 suite (#3)
93a887a unverified
Raw
History Blame Contribute Delete
240 Bytes
"""Shared pytest configuration."""
from __future__ import annotations
import pytest
@pytest.fixture
def anyio_backend() -> str:
"""The server uses asyncio primitives, so tests run on that supported backend."""
return "asyncio"