We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9770461 + 74a6136 commit 5ec5e46Copy full SHA for 5ec5e46
build/action.yml
@@ -66,7 +66,11 @@ runs:
66
pip install -r optional_requirements.txt
67
- name: Run pytest
68
shell: bash
69
- run: if [[ -d tests ]]; then pytest; fi
+ run: |
70
+ if [[ -d tests ]]; then
71
+ pip install .
72
+ pytest
73
+ fi
74
- name: Build assets
75
76
run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location .
0 commit comments