Skip to content

Commit 11c30b4

Browse files
committed
Also include values "0" in the reports
If no value is reported, then there wouldn't be a Result object, so a value of 0 is valid.
1 parent e66808d commit 11c30b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codespeed/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ def get_changes_table(self, trend_depth=10, force_save=False):
377377
for bench in Benchmark.objects.filter(units_title=units_title):
378378
units = bench.units
379379
lessisbetter = bench.lessisbetter
380-
resultquery = result_list.filter(benchmark=bench, value__gt=0)
380+
resultquery = result_list.filter(benchmark=bench)
381381
if not len(resultquery):
382382
continue
383383

0 commit comments

Comments
 (0)