We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02af3e4 commit 7c35d5eCopy full SHA for 7c35d5e
src/libvcs/pytest_plugin.py
@@ -679,11 +679,15 @@ def hg_repo(
679
680
681
@pytest.fixture
682
-def svn_repo(projects_path: pathlib.Path, svn_remote_repo: pathlib.Path) -> SvnSync:
+def svn_repo(
683
+ remote_repos_path: pathlib.Path,
684
+ projects_path: pathlib.Path,
685
+ svn_remote_repo: pathlib.Path,
686
+) -> SvnSync:
687
"""Pre-made svn clone of remote repo checked out to user's projects dir."""
688
remote_repo_name = unique_repo_name(remote_repos_path=projects_path)
689
new_checkout_path = projects_path / remote_repo_name
- master_copy = projects_path / "svn_repo"
690
+ master_copy = remote_repos_path / "svn_repo"
691
692
if master_copy.exists():
693
shutil.copytree(master_copy, new_checkout_path)
0 commit comments