Skip to content

Commit

Permalink
mlonmcu/session/postprocess/postprocesses.py: ignore Subs col in Comp…
Browse files Browse the repository at this point in the history
…areRowsPostprocess
  • Loading branch information
PhilippvK committed Aug 19, 2024
1 parent 912bfa4 commit 0740f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlonmcu/session/postprocess/postprocesses.py
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,7 @@ def post_session(self, report):
post_df = report.post_df
group_by = self.group_by
if group_by is None:
group_by = [x for x in pre_df.columns if x != "Run"]
group_by = [x for x in pre_df.columns if x not in ["Run", "Sub"]]
assert isinstance(group_by, list)
assert all(col in list(pre_df.columns) + list(post_df.columns) for col in group_by), "Cols mssing in df"
to_compare = self.to_compare
Expand Down

0 comments on commit 0740f3a

Please sign in to comment.