diff options
author | Tibor Frank <tifrank@cisco.com> | 2023-04-18 12:04:49 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2023-04-18 12:06:14 +0000 |
commit | 877928bd3cf147654209225dd4605db02eb562e4 (patch) | |
tree | f8361c1bcf96c8b9d2726229734333a5bbfbe2ec /csit.infra.dash/app/cdash/report/layout.py | |
parent | 90597a49191ada39edbf3490948df2229c743bef (diff) |
C-Dash: Add VPP Device coverage data
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: Ib083d287b8483c8b5b1be14ef3ce6b798eb04352
Diffstat (limited to 'csit.infra.dash/app/cdash/report/layout.py')
-rw-r--r-- | csit.infra.dash/app/cdash/report/layout.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csit.infra.dash/app/cdash/report/layout.py b/csit.infra.dash/app/cdash/report/layout.py index 8dbaea3508..1e79b68b5e 100644 --- a/csit.infra.dash/app/cdash/report/layout.py +++ b/csit.infra.dash/app/cdash/report/layout.py @@ -125,7 +125,7 @@ class Layout: if dut == "dpdk": area = "dpdk" else: - area = "-".join(lst_test_id[3:-2]) + area = ".".join(lst_test_id[3:-2]) suite = lst_test_id[-2].replace("2n1l-", "").replace("1n1l-", "").\ replace("2n-", "") test = lst_test_id[-1] @@ -1312,7 +1312,7 @@ class Layout: Input("plot-btn-download", "n_clicks"), prevent_initial_call=True ) - def _download_trending_data(store_sel, _): + def _download_iterative_data(store_sel, _): """Download the data :param store_sel: List of tests selected by user stored in the |