bearomorphism commented on code in PR #1150:
URL: https://github.com/apache/mahout/pull/1150#discussion_r2901548003
##########
.github/workflows/notebook-testing.yml:
##########
@@ -38,7 +38,7 @@ jobs:
- name: Run Jupyter Notebooks
run: |
- for nb in $(find . -name 'example/qumat/*.ipynb'); do
+ for nb in $(find . -path '*/examples/qumat/*.ipynb'); do
echo "Executing $nb"
uv run jupyter execute "$nb" --inplace
done
Review Comment:
```suggestion
uv run jupyter execute examples/qumat/*.ipynb --inplace
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]