File tree 1 file changed +0
-4
lines changed 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -709,8 +709,6 @@ def add_doctest_fixtures(
709
709
doctest_namespace : dict [str , Any ],
710
710
tmp_path : pathlib .Path ,
711
711
set_home : pathlib .Path ,
712
- gitconfig : pathlib .Path ,
713
- hgconfig : pathlib .Path ,
714
712
create_git_remote_repo : CreateRepoPytestFixtureFn ,
715
713
create_svn_remote_repo : CreateRepoPytestFixtureFn ,
716
714
create_hg_remote_repo : CreateRepoPytestFixtureFn ,
@@ -723,7 +721,6 @@ def add_doctest_fixtures(
723
721
return
724
722
doctest_namespace ["tmp_path" ] = tmp_path
725
723
if shutil .which ("git" ):
726
- doctest_namespace ["gitconfig" ] = gitconfig
727
724
doctest_namespace ["create_git_remote_repo" ] = functools .partial (
728
725
create_git_remote_repo ,
729
726
remote_repo_post_init = git_remote_repo_single_commit_post_init ,
@@ -738,7 +735,6 @@ def add_doctest_fixtures(
738
735
remote_repo_post_init = svn_remote_repo_single_commit_post_init ,
739
736
)
740
737
if shutil .which ("hg" ):
741
- doctest_namespace ["hgconfig" ] = hgconfig
742
738
doctest_namespace ["create_hg_remote_repo_bare" ] = create_hg_remote_repo
743
739
doctest_namespace ["create_hg_remote_repo" ] = functools .partial (
744
740
create_hg_remote_repo ,
You can’t perform that action at this time.
0 commit comments