Files
musicfetch/tests/conftest.py
2026-06-08 20:09:50 -07:00

17 lines
284 B
Python

import os
import pytest
os.environ.setdefault("MUSICFETCH_API_KEY", "test-key")
@pytest.fixture
def client():
from fastapi.testclient import TestClient
from server.app import app
return TestClient(app)
@pytest.fixture
def auth():
return {"X-API-Key": "test-key"}