14 lines
279 B
Python
14 lines
279 B
Python
import pytest
|
|
|
|
from app.tests.utils.utils import get_server_api, get_superuser_token_headers
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def server_api():
|
|
return get_server_api()
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def superuser_token_headers():
|
|
return get_superuser_token_headers()
|