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 a3f4fec commit 3aa2a1fCopy full SHA for 3aa2a1f
1 file changed
suite_report_git/suite_data.py
@@ -16,6 +16,7 @@
16
import shutil
17
import yaml
18
import re
19
+
20
try:
21
from bdiff.git_bdiff import GitBDiff, GitInfo
22
except ImportError:
@@ -104,7 +105,9 @@ def clone_sources(self):
104
105
source = data["source"]
106
if not source.endswith("/"):
107
source = source + "/"
- command = f'rsync -e "ssh -o StrictHostKeyChecking=no" -avl {source} {loc}'
108
+ command = (
109
+ f'rsync -e "ssh -o StrictHostKeyChecking=no" -avl {source} {loc}'
110
+ )
111
self.run_command(command, shell=True)
112
113
def determine_primary_source(self) -> str:
0 commit comments