summaryrefslogtreecommitdiffstats
path: root/doc/AnalyticsWebReport.py
diff options
context:
space:
mode:
authoritraviv <itraviv@cisco.com>2017-01-05 19:21:13 +0200
committeritraviv <itraviv@cisco.com>2017-01-08 10:11:36 +0200
commit37baac1566350407c06dec958db5b0f1a0101e1b (patch)
tree75f1fbe8f033c0eb0ab01948f177e174bfc20988 /doc/AnalyticsWebReport.py
parent7b0782636460d395f0ec5f4f4e8401e1caa84f65 (diff)
new TRexDataAnalysis version, with OOP design
Signed-off-by: itraviv <itraviv@cisco.com>
Diffstat (limited to 'doc/AnalyticsWebReport.py')
-rwxr-xr-xdoc/AnalyticsWebReport.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/AnalyticsWebReport.py b/doc/AnalyticsWebReport.py
index 1806cab9..e3f6504b 100755
--- a/doc/AnalyticsWebReport.py
+++ b/doc/AnalyticsWebReport.py
@@ -1,7 +1,7 @@
import os
import sys
import AnalyticsConnect as ac
-import TRexDataAnalysis as tr
+import TRexDataAnalysisV2 as tr
import time
import datetime
@@ -20,8 +20,8 @@ def main(verbose=False, detailed_test_stats=''):
print('Saving data to %s' % dest_path)
if detailed_test_stats:
print('generating detailed table for test results')
- tr.create_all_data(ga_all_data_dict, setups, start_date, current_date, save_path=dest_path,
- add_stats='yes', detailed_test_stats=detailed_test_stats)
+ tr.create_all_data(ga_all_data_dict, start_date, current_date, save_path=dest_path,
+ detailed_test_stats=detailed_test_stats)
if verbose:
print('Done without errors.')