@@ -252,7 +252,8 @@ def test_clone_from_with_path_contains_unicode(self):
252
252
253
253
@with_rw_directory
254
254
@skip (
255
- "the referenced repository was removed, and one needs to setup a new password controlled repo under the orgs control"
255
+ """The referenced repository was removed, and one needs to set up a new
256
+ password controlled repo under the org's control."""
256
257
)
257
258
def test_leaking_password_in_clone_logs (self , rw_dir ):
258
259
password = "fakepassword1234"
@@ -758,9 +759,9 @@ def test_blame_complex_revision(self, git):
758
759
759
760
@mock .patch .object (Git , "_call_process" )
760
761
def test_blame_accepts_rev_opts (self , git ):
761
- res = self .rorepo .blame ("HEAD" , "README.md" , rev_opts = ["-M" , "-C" , "-C" ])
762
762
expected_args = ["blame" , "HEAD" , "-M" , "-C" , "-C" , "--" , "README.md" ]
763
763
boilerplate_kwargs = {"p" : True , "stdout_as_string" : False }
764
+ self .rorepo .blame ("HEAD" , "README.md" , rev_opts = ["-M" , "-C" , "-C" ])
764
765
git .assert_called_once_with (* expected_args , ** boilerplate_kwargs )
765
766
766
767
@skipIf (
@@ -846,18 +847,13 @@ def test_comparison_and_hash(self):
846
847
847
848
@with_rw_directory
848
849
def test_tilde_and_env_vars_in_repo_path (self , rw_dir ):
849
- ph = os .environ .get ("HOME" )
850
- try :
850
+ with mock .patch .dict (os .environ , {"HOME" : rw_dir }):
851
851
os .environ ["HOME" ] = rw_dir
852
852
Repo .init (osp .join ("~" , "test.git" ), bare = True )
853
853
854
+ with mock .patch .dict (os .environ , {"FOO" : rw_dir }):
854
855
os .environ ["FOO" ] = rw_dir
855
856
Repo .init (osp .join ("$FOO" , "test.git" ), bare = True )
856
- finally :
857
- if ph :
858
- os .environ ["HOME" ] = ph
859
- del os .environ ["FOO" ]
860
- # end assure HOME gets reset to what it was
861
857
862
858
def test_git_cmd (self ):
863
859
# test CatFileContentStream, just to be very sure we have no fencepost errors
@@ -971,7 +967,7 @@ def _assert_rev_parse(self, name):
971
967
# history with number
972
968
ni = 11
973
969
history = [obj .parents [0 ]]
974
- for pn in range (ni ):
970
+ for _ in range (ni ):
975
971
history .append (history [- 1 ].parents [0 ])
976
972
# END get given amount of commits
977
973
@@ -1329,6 +1325,7 @@ def test_git_work_tree_env(self, rw_dir):
1329
1325
# move .git directory to a subdirectory
1330
1326
# set GIT_DIR and GIT_WORK_TREE appropriately
1331
1327
# check that repo.working_tree_dir == rw_dir
1328
+
1332
1329
self .rorepo .clone (join_path_native (rw_dir , "master_repo" ))
1333
1330
1334
1331
repo_dir = join_path_native (rw_dir , "master_repo" )
@@ -1338,16 +1335,12 @@ def test_git_work_tree_env(self, rw_dir):
1338
1335
os .mkdir (new_subdir )
1339
1336
os .rename (old_git_dir , new_git_dir )
1340
1337
1341
- oldenv = os .environ .copy ()
1342
- os .environ ["GIT_DIR" ] = new_git_dir
1343
- os .environ ["GIT_WORK_TREE" ] = repo_dir
1338
+ to_patch = {"GIT_DIR" : new_git_dir , "GIT_WORK_TREE" : repo_dir }
1344
1339
1345
- try :
1340
+ with mock . patch . dict ( os . environ , to_patch ) :
1346
1341
r = Repo ()
1347
1342
self .assertEqual (r .working_tree_dir , repo_dir )
1348
1343
self .assertEqual (r .working_dir , repo_dir )
1349
- finally :
1350
- os .environ = oldenv
1351
1344
1352
1345
@with_rw_directory
1353
1346
def test_rebasing (self , rw_dir ):
0 commit comments