Skip to content

Commit 5ec5e46

Browse files
authored
Merge pull request #19 from tekktrik/dev/install-package
Install library for tests
2 parents 9770461 + 74a6136 commit 5ec5e46

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)