Skip to content

Commit 4ba17ca

Browse files
Fix: Restore explicit pytest/nbval install in workflow
This commit adds back the `pip install pytest nbval` line to the `.github/workflows/ipynb_tests.yml` file. This change is based on your feedback to ensure that these packages are explicitly installed immediately before the `pytest --nbval` command is run, as a safeguard for the CI build process. This reverts a previous change that relied solely on `requirements.txt` for these packages to be available in the execution path for the testing step.
1 parent 1b5c03f commit 4ba17ca

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

.github/workflows/ipynb_tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ jobs:
1919
pip install -r requirements.txt
2020
- name: Test notebooks with pytest
2121
run: |
22+
pip install pytest nbval # This line is being added back
2223
pytest --nbval

0 commit comments

Comments
 (0)