11 lines
215 B
Python
11 lines
215 B
Python
|
"""Provide common smhi fixtures."""
|
||
|
import pytest
|
||
|
|
||
|
from tests.common import load_fixture
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope="session")
|
||
|
def api_response():
|
||
|
"""Return an API response."""
|
||
|
return load_fixture("smhi.json")
|