[pypy-commit] buildbot default: branch was None by default

mattip pypy.commits at gmail.com
Mon Jan 27 16:33:38 EST 2020


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r1129:9984670940a2
Date: 2020-01-27 23:33 +0200
http://bitbucket.org/pypy/buildbot/changeset/9984670940a2/

Log:	branch was None by default

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -933,6 +933,8 @@
             exe = os.path.split(target)[-1][:-2]
             rev = props.getProperty('got_revision')
             branch = props.getProperty('branch')
+            if branch == 'None' or branch is None:
+                branch = 'default'
             command=["python", "runner.py", '--output-filename', 'result.json',
                      '--changed', target,
                      '--baseline', target,


More information about the pypy-commit mailing list