Skip to content

Commit

Permalink
add entry points smoke tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sfmig committed Feb 26, 2024
1 parent ff8d50b commit 7595b2a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"combine-annotations",
],
)
def test_entry_points(cli_tool_name: str) -> None:
status = os.system(f"{cli_tool_name} --help")
def test_smoke(cli_command: str) -> None:
status = os.system(f"{cli_command} --help")
assert status == 0

0 comments on commit 7595b2a

Please sign in to comment.