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 1e3db93 commit b03eb14Copy full SHA for b03eb14
infrahub_sdk/testing/repository.py
@@ -1,8 +1,9 @@
1
from __future__ import annotations
2
3
import asyncio
4
-import shutil
5
import os
+import shutil
6
+
7
from dataclasses import dataclass, field
8
from enum import Enum
9
from pathlib import Path
@@ -71,7 +72,7 @@ def init(self) -> None:
71
72
dst=dest_path,
73
ignore=shutil.ignore_patterns(".git", *self.directories_to_ignore),
74
)
-
75
76
print(dest)
77
78
self._repo = GitRepoManager(str(Path(self.dst_directory / self.name)), branch=self.initial_branch)
0 commit comments