minor tewaks

This commit is contained in:
2010-04-09 14:17:10 -07:00
parent d51440ad0b
commit 9c288c10c8
5 changed files with 495 additions and 9 deletions

View File

@@ -103,6 +103,5 @@ def get_fails_in_timerange(self):
statement = "select count(*), name from (select builds.id, name from builds inner join tests on builds.id = tests.buildid where builds.starttime >"+str(curtime)+" group by builds.id, name) aaa group by name order by count(*) DESC"
cursor.execute(statement)
for row in cursor:
print row
yield row