Skip to content

Commit

Permalink
fix: entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
junliu724515 committed Aug 11, 2024
1 parent 4daaa67 commit 49718d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
packages=find_packages(),
entry_points={
"console_scripts": [
"sfmetadataextractor=sfmetadataextractor.cli:main",
"sfmetadataextractor=sfmetadataextractor.cli:app",
],
},
install_requires=[
Expand Down
1 change: 1 addition & 0 deletions sfmetadataextractor/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ def generate_unit_test(
"-o",
help="The output unit test class file."),
):
"""Generate unit test class for the input apex class."""
typer.echo(f"Generating unit tests for {input_file}")
generate_tests_handler = generate_tests.generateTests(input_file, output_file)
generate_tests_handler.generate()
Expand Down

0 comments on commit 49718d1

Please sign in to comment.