Skip to content
Snippets Groups Projects
Commit cfa1829b authored by Waleed Akbar's avatar Waleed Akbar
Browse files

Updated Analyatics Backend tests

parent 04e1cf6c
No related branches found
No related tags found
1 merge request!317Resolve "(CTTC) Analytics Module Enhancements"
...@@ -99,12 +99,12 @@ def analyzer_data(): ...@@ -99,12 +99,12 @@ def analyzer_data():
return { return {
'algo_name' : 'test_algorithm', 'algo_name' : 'test_algorithm',
'oper_mode' : 'test_mode', 'oper_mode' : 'test_mode',
'input_kpis' : ['kpi1', 'kpi2'], 'input_kpis' : get_input_kpi_list(),
'output_kpis': ['kpi3'], 'output_kpis': get_output_kpi_list(),
'thresholds' : {'kpi1': 0.5}, 'thresholds' : get_thresholds(),
'batch_size' : 10, 'batch_size' : get_batch_size(),
'window_size': 5, 'window_size': get_windows_size(),
'duration' : 20, 'duration' : get_duration(),
} }
def test_start_streamer(analytics_service, analyzer_data): def test_start_streamer(analytics_service, analyzer_data):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment