17 lines
284 B
Python
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"}
|