This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author exarkun
Recipients exarkun
Date 2008-03-18.01:00:26
SpamBayes Score 0.058579173
Marked as misclassified No
Message-id <1205802028.97.0.321014582059.issue2376@psf.upfronthosting.co.za>
In-reply-to
Content
The Python buildbot's waterfall view currently shows all builders.  Not
all of these are expected to work currently.  This can be confusing to
people trying to understand the current state of Python on various
platforms.  Buildbot can be configured to present limited views, for
example only including builders for platforms where all the tests are
expected to be passing (and expected to remain passing).

The way to place a builder in a particular category is with the
"category" keyword in its dict:

    builders.append({
              'name': 'foo',
              'factory': bar
              'category': 'unsupported'})

With 0.7.5, adding a "category" query argument will restrict the view to
include only builders from the specified category.

With 0.7.6, you can construct a custom
buildbot.status.web.waterfall.WaterfallStatusResource and pass a list
for the categories initializer argument which will restrict the builders
it displays.  You can make several of these for different categories and
put them at various places in the resource hierarchy.
History
Date User Action Args
2008-03-18 01:00:29exarkunsetspambayes_score: 0.0585792 -> 0.058579173
recipients: + exarkun
2008-03-18 01:00:29exarkunsetspambayes_score: 0.0585792 -> 0.0585792
messageid: <1205802028.97.0.321014582059.issue2376@psf.upfronthosting.co.za>
2008-03-18 01:00:27exarkunlinkissue2376 messages
2008-03-18 01:00:26exarkuncreate