Skip to content

Commit

Permalink
Merge pull request #82 from ayust/submit-time-reporting
Browse files Browse the repository at this point in the history
Add submit time reporting to sql_reporter
  • Loading branch information
ayust committed May 31, 2012
2 parents 7918204 + 70ec04d commit 5a3b115
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion testify/plugins/sql_reporter.py
Expand Up @@ -117,6 +117,7 @@ def create_build_row(self, build_info):
'buildnumber' : info_dict['buildnumber'],
'branch' : info_dict['branch'],
'revision' : info_dict['revision'],
'submit_time' : info_dict.get('submitstamp'),
'buildname' : info_dict['buildname'],
}))
return results.lastrowid
Expand Down Expand Up @@ -266,4 +267,6 @@ def build_test_reporters(options):
if options.reporting_db_config or options.reporting_db_url:
return [SQLReporter(options)]
else:
return []
return []

# vim: set ts=4 sts=4 sw=4 et:

0 comments on commit 5a3b115

Please sign in to comment.