-
Notifications
You must be signed in to change notification settings - Fork 1
testing unverified commit #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
20e6e61
15dd490
7940a88
920d99d
e49ef6a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,6 +19,8 @@ def clone(self): | |
| Utilities.updateStage(self.ciVars.overallSummaryFile, stage='cloneTestRepo', | ||
| status='running', result='None', threadLock=self.lock) | ||
|
|
||
| self.log.info(f'clone: testIdTestingBranch: {self.testIdTestingBranch}') | ||
|
|
||
| # Create the TestBranch folder to hold all testId testing repos | ||
| if os.path.exists(self.testBranchFolder) is False: | ||
| Utilities.runLinuxCmd(f'mkdir -p {self.testBranchFolder}') | ||
|
|
@@ -41,7 +43,7 @@ def clone(self): | |
| Utilities.runLinuxCmd(f'chmod 770 {self.testIdTestingBranch}') | ||
|
|
||
| if self.ciVars.localTestBranch: | ||
| Utilities.runLinuxCmd(f'cp -r {self.ciVars.localTestBranch} {self.testIdTestingBranch}', logObj=self.log) | ||
| Utilities.runLinuxCmd(f'cp -r {self.ciVars.localTestBranch}/* {self.testIdTestingBranch}', logObj=self.log) | ||
joannalye marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| else: | ||
| if self.branchName: | ||
| cmd = f'git clone --branch {self.branchName} {self.repo} {self.testIdTestingBranch}' | ||
|
|
@@ -62,7 +64,7 @@ def clone(self): | |
| self.log.info('Verify if cloned repo test branch has files in it') | ||
| output = Utilities.runLinuxCmd('ls', cwd=self.testIdTestingBranch, logObj=self.log) | ||
| if len(output) > 0: | ||
| self.log.info('Verified cloned files!') | ||
|
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In my opinion that could make it harder for PR owner to go over the code comments when addressing them as they'd have to open them one by one. |
||
| self.log.info('Verified cloned files') | ||
| verified = True | ||
| Utilities.updateStage(self.ciVars.overallSummaryFile, stage='cloneTestRepo', | ||
| status='completed', result='passed', threadLock=self.lock) | ||
|
|
||
joannalye marked this conversation as resolved.
Show resolved
Hide resolved
|
Uh oh!
There was an error while loading. Please reload this page.