rewording

This commit is contained in:
David Lenwell 2013-10-04 04:58:52 -07:00
parent 5485d0c429
commit c83e9bd7be
1 changed files with 4 additions and 3 deletions

View File

@ -119,7 +119,7 @@ def start(args):
test_status = db.query(TestStatus).filter_by(test_id=test.id).order_by(TestStatus.id.desc()).first()
if test_status is None:
# no entries in the status log..
# no entries in the status log.. add 'new'
print 'nothing in status log.. add something'
test_status = TestStatus(test.id, 'new')
db.add(test_status)
@ -133,14 +133,15 @@ def start(args):
elif test_status.message in ('finished','new','canceled'):
#finished, new, canceled: trigger clean start new test run
print 'proceed with clean start of test'
print 'start clean and run'
test_status = TestStatus(test.id, 'running')
db.add(test_status)
db.commit()
elif test_status.message in ('running'):
# running: report the current status
print 'already running todo: add status log out put here'
print 'already running '
status(args)
def status(args):