Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r870:20116adf95a8
Date: 2013-10-27 10:32 +0100
http://bitbucket.org/pypy/buildbot/changeset/20116adf95a8/

Log:    Never show entries more than two months old on the summary pages

diff --git a/bot2/pypybuildbot/summary.py b/bot2/pypybuildbot/summary.py
--- a/bot2/pypybuildbot/summary.py
+++ b/bot2/pypybuildbot/summary.py
@@ -745,6 +745,8 @@
             for build in builditer:
                 if prune_old and self._age(build) > 7:
                     continue
+                if self._age(build) > 60:   # two months old: prune anyway
+                    continue
                 branch = self._get_branch(status, build)
                 if not test_branch(branch):
                     continue
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to