Merge "Fail early if no data is found in the database"

This commit is contained in:
Jenkins 2015-11-24 21:53:59 +00:00 committed by Gerrit Code Review
commit ac54f82a80

View File

@ -36,7 +36,14 @@ def set_cli_opts(parser):
def generate_series(): def generate_series():
session = api.get_session() session = api.get_session()
test_id = api.get_id_from_test_id(CONF.command.test_id, session) test_id = api.get_id_from_test_id(CONF.command.test_id, session)
if not test_id:
print("The test_id %s was not found in the database" %
CONF.command.test_id)
exit(2)
run_times = api.get_test_run_time_series(test_id, session) run_times = api.get_test_run_time_series(test_id, session)
if not run_times:
print("There was no data found in the database")
exit(3)
if not CONF.title: if not CONF.title:
test = api.get_test_by_id(test_id, session) test = api.get_test_by_id(test_id, session)
session.close() session.close()