CSIT-1004: Generate csv and txt tables with trending and statistical data
[csit.git] / resources / tools / presentation / specification_parser.py
index 2659c29..ca9c19c 100644 (file)
@@ -389,7 +389,8 @@ class Specification(object):
                         else:
                             # defined as a range <start, end (build number)>
                             build_nr = builds.get("end", None)
-                        builds = [x for x in range(1, int(build_nr)+1)]
+                        builds = [x for x in range(builds["start"],
+                                                   int(build_nr)+1)]
                         self.configuration["data-sets"][set_name][job] = builds
 
         logging.info("Done.")