Remove action debug commands

This commit is contained in:
Michael Bradley 2025-02-23 09:15:59 -05:00
parent 4b3a45463e
commit 88c4fa428a
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -56,7 +56,7 @@ jobs:
uses: forgejo/upload-artifact@v4
with:
name: wheels
path: target/wheels/*.whl
path: target/wheels/*.whl # Should only match the one target built
compression-level: 0
python-test:
@ -74,10 +74,7 @@ jobs:
- name: Retrieve built wheel
uses: forgejo/download-artifact@v4
- name: Install built wheel
run: |
ls -la
ls -la wheels
pip install wheels/*.whl
run: pip install wheels/*.whl # Should only match the one target built
- name: Run Python tests
run: pytest tests/*.py