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 773cb5a commit 2ef1fefCopy full SHA for 2ef1fef
infrahub_sdk/testing/repository.py
@@ -58,12 +58,11 @@ def path(self) -> str:
58
return str(self.src_directory / self.name)
59
60
def init(self) -> None:
61
- dest = shutil.copytree(
+ shutil.copytree(
62
src=self.src_directory,
63
dst=self.dst_directory / self.name,
64
ignore=shutil.ignore_patterns(".git"),
65
)
66
- print(dest)
67
68
self._repo = GitRepoManager(str(Path(self.dst_directory / self.name)), branch=self.initial_branch)
69
0 commit comments