forked from qt-creator/qt-creator
Squish: Limited number of rows for task file to 100
Change-Id: I05255b3d06cf08fa2e2744105aa88c8510b0f6ef Reviewed-by: Christian Stenger <christian.stenger@nokia.com>
This commit is contained in:
committed by
Robert Löhning
parent
dc0b11db17
commit
1b6a3addcd
@@ -117,7 +117,12 @@ def createTasksFile(list):
|
||||
outfile = os.path.join(tasksFileDir, os.path.basename(squishinfo.testCase)+"_%d.tasks" % tasksFileCount)
|
||||
file = codecs.open(outfile, "w", "utf-8")
|
||||
test.log("Writing tasks file - can take some time (according to number of issues)")
|
||||
for row in range(model.rowCount()):
|
||||
rows = model.rowCount()
|
||||
if os.environ.get("SYSTEST_DEBUG") == "1":
|
||||
firstrow = 0
|
||||
else:
|
||||
firstrow = max(0, rows - 100)
|
||||
for row in range(firstrow, rows):
|
||||
index = model.index(row,0)
|
||||
# the following is currently a bad work-around
|
||||
fData = index.data(Qt.UserRole).toString() # file
|
||||
|
Reference in New Issue
Block a user