clan-core/pkgs/clan-cli/tests/temporary_dir.py

26 lines
770 B
Python
Raw Normal View History

import logging
2023-10-13 17:56:10 +00:00
import os
2023-07-28 10:12:37 +00:00
import tempfile
from pathlib import Path
from typing import Iterator
import pytest
log = logging.getLogger(__name__)
2023-07-28 10:12:37 +00:00
@pytest.fixture
def temporary_home(monkeypatch: pytest.MonkeyPatch) -> Iterator[Path]:
env_dir = os.getenv("TEST_TEMPORARY_DIR")
if env_dir is not None:
path = Path(env_dir).resolve()
log.debug("Temp HOME directory: %s", str(path))
monkeypatch.setenv("HOME", str(path))
2023-10-13 17:56:10 +00:00
yield path
else:
log.debug("TEST_TEMPORARY_DIR not set, using TemporaryDirectory")
2023-10-13 17:56:10 +00:00
with tempfile.TemporaryDirectory(prefix="pytest-") as dirpath:
monkeypatch.setenv("HOME", str(dirpath))
log.debug("Temp HOME directory: %s", str(dirpath))
2023-10-13 17:56:10 +00:00
yield Path(dirpath)