Skip to content

Commit

Permalink
#31 Move test for command script to CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
roskakori committed Nov 27, 2024
1 parent 2fa5cd8 commit e9a9985
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
poetry install --no-interaction
- name: Run check_done script
run: |
poetry run check_done --version
- name: Build check-done package
run: |
poetry build
Expand Down
2 changes: 1 addition & 1 deletion check_done/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def _argument_parser():
return parser


def main():
def main(): # pragma: no cover
logging.basicConfig(level=logging.INFO)
sys.exit(check_done_command())

Expand Down

0 comments on commit e9a9985

Please sign in to comment.