Skip to content

Commit 74a6136

Browse files
authored
Install package for tests
1 parent 9770461 commit 74a6136

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build/action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,11 @@ runs:
6666
pip install -r optional_requirements.txt
6767
- name: Run pytest
6868
shell: bash
69-
run: if [[ -d tests ]]; then pytest; fi
69+
run: |
70+
if [[ -d tests ]]; then
71+
pip install .
72+
pytest
73+
fi
7074
- name: Build assets
7175
shell: bash
7276
run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location .

0 commit comments

Comments
 (0)