salt/tests/unit/conftest.py
Pedro Algarvio 4d49013247 Update to isort 5.10.1
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
2022-08-01 12:49:16 -06:00

10 lines
225 B
Python

import pathlib
import pytest
from tests.support.runtests import RUNTIME_VARS
@pytest.fixture(scope="session", autouse=True)
def _create_old_tempdir():
pathlib.Path(RUNTIME_VARS.TMP).mkdir(exist_ok=True, parents=True)