[pypy-svn] r50893 - pypy/build/buildbot

exarkun at codespeak.net exarkun at codespeak.net
Tue Jan 22 23:13:47 CET 2008


Author: exarkun
Date: Tue Jan 22 23:13:46 2008
New Revision: 50893

Modified:
   pypy/build/buildbot/pypy_status.py
Log:
sorting the results makes them a lot easier to look at

Modified: pypy/build/buildbot/pypy_status.py
==============================================================================
--- pypy/build/buildbot/pypy_status.py	(original)
+++ pypy/build/buildbot/pypy_status.py	Tue Jan 22 23:13:46 2008
@@ -62,7 +62,7 @@
     builderNames = [
         name for name in builderNames if name in anyBuildResults]
 
-    for testName in recentFailures:
+    for testName in sorted(recentFailures):
         row = tags.tr()
         for buildNumber in buildNumbers:
             result = []



More information about the Pypy-commit mailing list