Skip to content

Commit

Permalink
Fix entry point for packaging
Browse files Browse the repository at this point in the history
Python scripts packaging expects a parameter-less entry point.
  • Loading branch information
agrenott committed Nov 6, 2023
1 parent 43b0f63 commit 4d8e3df
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pythonpackage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ jobs:
hatch run geotiff:all
- name: Run unit test without Geotiff dependencies
run: |
hatch run test
hatch run test
- name: Ensure script entrypoint is executable
run: |
hatch run pyhgtmap -v
- name: Report test-coverage to DeepSource
# Deepsource doesn't seem super stable
continue-on-error: true
Expand Down

0 comments on commit 4d8e3df

Please sign in to comment.