Skip to content

Commit

Permalink
use origin as first pull try in test_pr
Browse files Browse the repository at this point in the history
prevents 'your branch is ahead of origin/master by xx commits' messages from growing over time.
  • Loading branch information
minrk committed Aug 2, 2012
1 parent 5d68b79 commit f019685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/test_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def setup(self):
os.chdir(repodir)
check_call(['git', 'checkout', 'master'])
try :
check_call(['git', 'pull', ipy_repository, 'master'])
check_call(['git', 'pull', 'origin', 'master'])
except CalledProcessError :
check_call(['git', 'pull', ipy_http_repository, 'master'])
os.chdir(basedir)
Expand Down

0 comments on commit f019685

Please sign in to comment.