forked from p15670423/monkey
UT: Change import order in conftest.py
This commit is contained in:
parent
665f7e4adf
commit
1fc0eae480
|
@ -6,11 +6,11 @@ from typing import Callable, Dict
|
|||
import pytest
|
||||
from _pytest.monkeypatch import MonkeyPatch
|
||||
|
||||
from common.configuration import AgentConfiguration, build_default_agent_configuration
|
||||
|
||||
MONKEY_BASE_PATH = str(Path(__file__).parent.parent.parent)
|
||||
sys.path.insert(0, MONKEY_BASE_PATH)
|
||||
|
||||
from common.configuration import AgentConfiguration, build_default_agent_configuration # noqa: E402
|
||||
|
||||
|
||||
@pytest.fixture(scope="session")
|
||||
def data_for_tests_dir(pytestconfig):
|
||||
|
|
Loading…
Reference in New Issue