@@ -28,8 +28,10 @@ def test_installation(self, rw_dir):
28
28
self .assertEqual (0 , result .returncode , msg = result .stderr or result .stdout or "Can't build - setup.py failed" )
29
29
result = subprocess .run ([self .python , '-c' , 'import git' ], stdout = subprocess .PIPE , cwd = self .sources )
30
30
self .assertEqual (0 , result .returncode , msg = result .stderr or result .stdout or "Selftest failed" )
31
- result = subprocess .run ([self .python , '-c' , 'import sys;import git; print(sys.path)' ], stdout = subprocess .PIPE , cwd = self .sources )
32
- syspath = result .stdout .decode ('utf-8' ).splitlines ()[0 ]
31
+ result = subprocess .run ([self .python , '-c' , 'import sys;import git; print(sys.path)' ],
32
+ stdout = subprocess .PIPE , cwd = self .sources )
33
+ syspath = result .stdout .decode ('utf-8' ).splitlines ()[0 ]
33
34
syspath = ast .literal_eval (syspath )
34
- self .assertEqual ('' , syspath [0 ], msg = 'Failed to follow the conventions for https://docs.python.org/3/library/sys.html#sys.path' )
35
+ self .assertEqual ('' , syspath [0 ],
36
+ msg = 'Failed to follow the conventions for https://docs.python.org/3/library/sys.html#sys.path' )
35
37
self .assertTrue (syspath [1 ].endswith ('gitdb' ), msg = 'Failed to add gitdb to sys.path' )
0 commit comments