Skip to content

Commit

Permalink
Disable omit_defaults for reports...
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Jul 14, 2022
1 parent 58c4441 commit 432d444
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mlonmcu/session/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,8 @@ def get_report(self):
pre["Num"] = self.num
post = {}
post["Features"] = self.get_all_feature_names()
post["Config"] = self.get_all_configs(omit_paths=True, omit_defaults=True, omit_globals=True)
# post["Config"] = self.get_all_configs(omit_paths=True, omit_defaults=True, omit_globals=True)
post["Config"] = self.get_all_configs(omit_paths=True, omit_defaults=False, omit_globals=True)
post["Postprocesses"] = self.get_all_postprocess_names()
post["Comment"] = self.comment if len(self.comment) > 0 else "-"
if self.failing:
Expand Down

0 comments on commit 432d444

Please sign in to comment.