Package commands :: Module update_graphs
[hide private]
[frames] | no frames]

Source Code for Module commands.update_graphs

 1  import click 
 2  from coprs.logic import builds_logic 
3 4 5 @click.command() 6 -def update_graphs():
7 """ 8 Generates newest graph data. 9 """ 10 builds_logic.BuildsLogic.get_task_graph_data('10min') 11 builds_logic.BuildsLogic.get_small_graph_data('30min') 12 builds_logic.BuildsLogic.get_task_graph_data('24h')
13