mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
10 lines
225 B
Python
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)
|