14 lines
288 B
Python
14 lines
288 B
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(scope='session')
|
|
def config_fixture() -> Path:
|
|
return Path(__file__).parent / 'data' / 'test_config.json'
|
|
|
|
|
|
@pytest.fixture(scope='session')
|
|
def creds_fixture() -> Path:
|
|
return Path(__file__).parent / 'data' / 'test_creds.json'
|