9 lines
141 B
Python
9 lines
141 B
Python
import pytest
|
|
|
|
from pyinfra.config.loader import load_settings
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def settings():
|
|
return load_settings()
|