Add total run time to the runs table
This commit adds calculating the total run time in secs and storing that in the runs table to the script. This also converts the column in the runs table to be a float not an int. Normally this would require a separate migration but since I just pushed this I'm assuming I'm not going to break existing DBs.
This commit is contained in:
@@ -35,7 +35,7 @@ def upgrade():
|
||||
sa.Column('skips', sa.Integer()),
|
||||
sa.Column('fails', sa.Integer()),
|
||||
sa.Column('passes', sa.Integer()),
|
||||
sa.Column('run_time', sa.Integer()),
|
||||
sa.Column('run_time', sa.Float()),
|
||||
sa.Column('artifacts', sa.Text()),
|
||||
mysql_engine=True)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user