aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--csit.infra.dash/app/cdash/report/graphs.py13
-rw-r--r--csit.infra.dash/app/cdash/utils/constants.py2
2 files changed, 1 insertions, 14 deletions
diff --git a/csit.infra.dash/app/cdash/report/graphs.py b/csit.infra.dash/app/cdash/report/graphs.py
index f10729a9c8..5af962158e 100644
--- a/csit.infra.dash/app/cdash/report/graphs.py
+++ b/csit.infra.dash/app/cdash/report/graphs.py
@@ -49,21 +49,8 @@ def select_iterative_data(data: pd.DataFrame, itm:dict) -> pd.DataFrame:
core = str() if itm["dut"] == "trex" else f"{itm['core']}"
ttype = "ndrpdr" if itm["testtype"] in ("ndr", "pdr") else itm["testtype"]
- dut_v100 = "none" if itm["dut"] == "trex" else itm["dut"]
- dut_v101 = itm["dut"]
-
df = data.loc[(
(data["release"] == itm["rls"]) &
- (
- (
- (data["version"] == "1.0.0") &
- (data["dut_type"].str.lower() == dut_v100)
- ) |
- (
- (data["version"] == "1.0.1") &
- (data["dut_type"].str.lower() == dut_v101)
- )
- ) &
(data["test_type"] == ttype) &
(data["passed"] == True)
)]
diff --git a/csit.infra.dash/app/cdash/utils/constants.py b/csit.infra.dash/app/cdash/utils/constants.py
index e9777985dd..6885ac55bf 100644
--- a/csit.infra.dash/app/cdash/utils/constants.py
+++ b/csit.infra.dash/app/cdash/utils/constants.py
@@ -74,7 +74,7 @@ class Constants:
# List of releases used for iterative data processing.
# The releases MUST be in the order from the current (newest) to the last
# (oldest).
- RELEASES = ["rls2210", "rls2206", "rls2202", ]
+ RELEASES = ["rls2302", "rls2210", "rls2206", ]
############################################################################
# General, application wide, layout affecting constants.