return GH to original

This commit is contained in:
Churikova Tetiana 2018-04-23 18:41:25 +03:00 committed by Tetiana Churikova
parent d3b0d2cd39
commit f6d4e8d413
1 changed files with 6 additions and 5 deletions

View File

@ -297,11 +297,12 @@ class GithubPage(BasePageObject):
repo = git.Repo(self.local_repo_path)
logging.info(repo.git.status())
logging.info(repo.git.pull('upstream', 'master'))
repo_url = 'https://%s:%s@github.com/%s/%s.git' % (test_data.config['DEV']['gh_username'],
test_data.config['DEV']['gh_password'], test_data.config['DEV']['gh_username'], test_data.config['ORG']['gh_repo_name'])
logging.info('Pushing to %s' % repo_url)
logging.info(repo.git.push(repo_url))
# repo_url = 'https://%s:%s@github.com/%s/%s.git' % (test_data.config['DEV']['gh_username'],
# test_data.config['DEV']['gh_password'], test_data.config['DEV']['gh_username'], test_data.config['ORG']['gh_repo_name'])
#
# logging.info('Pushing to %s' % repo_url)
# logging.info(repo.git.push(repo_url))
logging.info(repo.git.push('origin', 'master'))
logging.info(repo.git.fetch('--all'))
repo.git.checkout('-b', branch)
file = open(os.path.join(self.local_repo_path, file_to_modify), 'w')