We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9014aa6 commit c657ee6Copy full SHA for c657ee6
1 file changed
codespeed/feeds.py
@@ -12,6 +12,15 @@ def items(self):
12
.filter(self.result_filter())\
13
.order_by('-revision__date')[:10]
14
15
+ def item_title(self, item):
16
+ return unicode(item.revision)
17
+
18
+ def item_description(self, item):
19
+ if item.summary:
20
+ return item.summary
21
+ else:
22
+ return "No significant changes"
23
24
class LatestEntries(ResultFeed):
25
description = "Last benchmark runs"
26
0 commit comments