docs: add a README for updating notebooks/cassettes (#1705)

This commit is contained in:
Vadym Barda
2024-09-13 12:56:23 -04:00
committed by GitHub
parent 33f9ec6c04
commit e87d3adb4c
3 changed files with 67 additions and 5 deletions
+5
View File
@@ -0,0 +1,5 @@
for file in $(find docs/docs/how-tos -name "*.ipynb" | grep -v ".ipynb_checkpoints")
do
echo "Executing $file"
poetry run jupyter execute "$file"
done