Update merge test to auto-check against github repo

This commit is contained in:
Luke Campagnola 2014-04-03 17:20:01 -04:00
parent d940b9560f
commit ebccf431bc

View File

@ -244,15 +244,20 @@ def unitTests():
return ret return ret
def checkMergeSize(sourceBranch=None, targetBranch='develop', sourceRepo=None, targetRepo=None): def checkMergeSize(sourceBranch=None, targetBranch=None, sourceRepo=None, targetRepo=None):
""" """
Check that a git merge would not increase the repository size by MERGE_SIZE_LIMIT. Check that a git merge would not increase the repository size by MERGE_SIZE_LIMIT.
""" """
if sourceBranch is None: if sourceBranch is None:
sourceBranch = getGitBranch() sourceBranch = getGitBranch()
if sourceRepo is None:
sourceRepo = '..' sourceRepo = '..'
if targetRepo is None:
if targetBranch is None:
if sourceBranch == 'develop':
targetBranch = 'develop'
targetRepo = 'https://github.com/pyqtgraph/pyqtgraph.git'
else:
targetBranch = 'develop'
targetRepo = '..' targetRepo = '..'
workingDir = '__merge-test-clone' workingDir = '__merge-test-clone'