Skip to content

Commit

Permalink
Merge pull request #355 from atopile/mawildoer/fix-bad-merge
Browse files Browse the repository at this point in the history
Re-add variable report after bad merge
  • Loading branch information
mawildoer committed May 11, 2024
2 parents a37fadc + 56a221a commit eea97e6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/atopile/cli/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,3 +212,9 @@ def generate_module_map(build_args: BuildContext) -> None:
def generate_assertion_report(build_ctx: BuildContext) -> None:
"""Generate a report based on assertions made in the source code."""
atopile.assertions.generate_assertion_report(build_ctx)


@muster.register("variable-report")
def generate_variable_report(build_ctx: BuildContext) -> None:
"""Generate a report of all the variable values in the design."""
atopile.variable_report.generate(build_ctx)

0 comments on commit eea97e6

Please sign in to comment.