Skip to content

Commit

Permalink
Corrected DMESG and temporarily comment out pytest and string get res…
Browse files Browse the repository at this point in the history
…ult ar.payload_param
  • Loading branch information
cseptimo committed Dec 12, 2024
1 parent 4553b82 commit 92b0b32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/models/score.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def get_test_results(self): # noqa: C901
"pytest_skipped",
]:
if not ar.payload_param == "NA":
entry += "(" + ar.payload_param + ")"
entry += "("+ str(ar.payload_param) +")"
if entry in report[bn][test]["data"]:
report[bn][test]["data"][entry].append(
details
Expand All @@ -194,9 +194,9 @@ def get_test_results(self): # noqa: C901
"drivers_missing",
"dmesg_warnings_found",
"dmesg_errors_found",
"pytest_errors",
"pytest_failures",
"pytest_skipped",
# "pytest_errors",
# "pytest_failures",
# "pytest_skipped",
]:
if isinstance(report[bn][test]["data"], list):
try:
Expand Down
2 changes: 1 addition & 1 deletion app/score_card/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ def generate_dmesg_errors(data):
dbc.Tab(
generate_dash_table(data, "dmesg_errors_found"),
tab_id="tab-2",
label="Dmeg Errors",
label="Dmesg Errors",
),
],
active_tab="tab-1",
Expand Down

0 comments on commit 92b0b32

Please sign in to comment.