We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5393b3d commit 735b930Copy full SHA for 735b930
1 file changed
libvcs/conftest.py
@@ -324,6 +324,7 @@ def add_doctest_fixtures(
324
create_git_remote_repo: CreateRepoCallbackFixtureProtocol,
325
create_svn_remote_repo: CreateRepoCallbackFixtureProtocol,
326
create_hg_remote_repo: CreateRepoCallbackFixtureProtocol,
327
+ git_repo: pathlib.Path,
328
):
329
doctest_namespace["tmp_path"] = tmp_path
330
if which("git"):
@@ -333,6 +334,7 @@ def add_doctest_fixtures(
333
334
remote_repo_post_init=git_remote_repo_single_commit_post_init,
335
)
336
doctest_namespace["create_git_remote_repo_bare"] = create_git_remote_repo
337
+ doctest_namespace["git_local_clone"] = git_repo
338
if which("svn"):
339
doctest_namespace["create_svn_remote_repo"] = create_svn_remote_repo
340
if which("hg"):
0 commit comments