~ruther/guix-local

ref: 7e4e3df4e86fa825f66ade5585a5a8cdf76d8d1c guix-local/gnu/packages/patches/thefuck-test-environ.patch -rw-r--r-- 404 bytes
7e4e3df4 — Hartmut Goebel gnu: qqc2-desktop-style: Fix missing input 'qtquickcontrols2'. 8 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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