fix: monkeypatch system env

This commit is contained in:
aclist 2026-07-07 16:28:52 +09:00
parent fa5f638697
commit a7cfd4c346
2 changed files with 2 additions and 3 deletions

View File

@ -26,7 +26,7 @@ def state_files():
@pytest.fixture
def xdg_paths():
def xdg_paths(monkeypatch):
routes = {
"XDG_CONFIG_HOME": "",
"XDG_STATE_HOME": "",
@ -37,7 +37,7 @@ def xdg_paths():
tmp = tempfile.TemporaryDirectory(delete=False)
routes[route] = tmp.name
for k, v in routes.items():
os.environ[k] = v
monkeypatch.setenv(k, v)
env = get_xdg_paths()
return parse_filepaths(env)

View File

@ -20,7 +20,6 @@ def test_steam(config):
key = config["steam_api"]
assert probe.test_steam_api(key)
def test_bm(config):
key = config["bm_api"]
assert probe.test_bm_api(key)