@@ -28,8 +28,10 @@ def test_installation(self, rw_dir):
2828self .assertEqual (0 ,result .returncode ,msg = result .stderr or result .stdout or "Can't build - setup.py failed" )
2929result = subprocess .run ([self .python ,'-c' ,'import git' ],stdout = subprocess .PIPE ,cwd = self .sources )
3030self .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 ]
3334syspath = 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' )
3537self .assertTrue (syspath [1 ].endswith ('gitdb' ),msg = 'Failed to add gitdb to sys.path' )