drop unused clan_data_dir
This commit is contained in:
@@ -42,23 +42,6 @@ def user_config_dir() -> Path:
|
|||||||
return Path(os.getenv("XDG_CONFIG_HOME", os.path.expanduser("~/.config")))
|
return Path(os.getenv("XDG_CONFIG_HOME", os.path.expanduser("~/.config")))
|
||||||
|
|
||||||
|
|
||||||
def user_data_dir() -> Path:
|
|
||||||
if sys.platform == "win32":
|
|
||||||
return Path(os.getenv("APPDATA", os.path.expanduser("~\\AppData\\Roaming\\")))
|
|
||||||
elif sys.platform == "darwin":
|
|
||||||
return Path(os.path.expanduser("~/Library/Application Support/"))
|
|
||||||
else:
|
|
||||||
return Path(os.getenv("XDG_DATA_HOME", os.path.expanduser("~/.local/share")))
|
|
||||||
|
|
||||||
|
|
||||||
def clan_data_dir() -> Path:
|
|
||||||
path = user_data_dir() / "clan"
|
|
||||||
if not path.exists():
|
|
||||||
log.debug(f"Creating path with parents {path}")
|
|
||||||
path.mkdir(parents=True)
|
|
||||||
return path.resolve()
|
|
||||||
|
|
||||||
|
|
||||||
def clan_config_dir() -> Path:
|
def clan_config_dir() -> Path:
|
||||||
path = user_config_dir() / "clan"
|
path = user_config_dir() / "clan"
|
||||||
if not path.exists():
|
if not path.exists():
|
||||||
|
|||||||
@@ -22,7 +22,6 @@ def temporary_home(monkeypatch: pytest.MonkeyPatch) -> Iterator[Path]:
|
|||||||
with tempfile.TemporaryDirectory(prefix="pytest-") as dirpath:
|
with tempfile.TemporaryDirectory(prefix="pytest-") as dirpath:
|
||||||
monkeypatch.setenv("HOME", str(dirpath))
|
monkeypatch.setenv("HOME", str(dirpath))
|
||||||
monkeypatch.setenv("XDG_CONFIG_HOME", str(Path(dirpath) / ".config"))
|
monkeypatch.setenv("XDG_CONFIG_HOME", str(Path(dirpath) / ".config"))
|
||||||
monkeypatch.setenv("XDG_DATA_HOME", str(Path(dirpath) / ".local/share"))
|
|
||||||
monkeypatch.chdir(str(dirpath))
|
monkeypatch.chdir(str(dirpath))
|
||||||
log.debug("Temp HOME directory: %s", str(dirpath))
|
log.debug("Temp HOME directory: %s", str(dirpath))
|
||||||
yield Path(dirpath)
|
yield Path(dirpath)
|
||||||
|
|||||||
Reference in New Issue
Block a user