mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
15 lines
404 B
Diff
15 lines
404 B
Diff
|
Retain environment setting of "HOME" for tests that need os.path.expanduser()
|
||
|
to return a readable directory in the build chroot.
|
||
|
|
||
|
--- thefuck-3.15/tests/test_conf.py
|
||
|
+++ thefuck-3.15/tests/test_conf.py
|
||
|
@@ -12,7 +12,7 @@
|
||
|
|
||
|
@pytest.fixture
|
||
|
def environ(monkeypatch):
|
||
|
- data = {}
|
||
|
+ data = {"HOME": os.environ.get("HOME")}
|
||
|
monkeypatch.setattr('thefuck.conf.os.environ', data)
|
||
|
return data
|
||
|
|