Skip to content

Commit bc89d56

Browse files
committed
Add pytest run to CI install workflow
Install pytest in the install workflow and add a step to run pytest against the tests/ directory with verbose output. Ensures unit tests are executed as part of the CI install job.
1 parent 124d897 commit bc89d56

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/install.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@ jobs:
1818
run: |
1919
python -m pip install --upgrade pip
2020
pip install -e '.[all]'
21+
pip install pytest
22+
- name: Run tests
23+
run: |
24+
pytest tests/ -v

0 commit comments

Comments
 (0)