Skip to content

Commit

Permalink
update script
Browse files Browse the repository at this point in the history
  • Loading branch information
vbarda committed Sep 13, 2024
1 parent a4149c9 commit 47831bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/run_notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,7 @@ jobs:
TAVILY_API_KEY: ${{ secrets.TAVILY_API_KEY }}
LANGSMITH_API_KEY: ${{ secrets.LANGSMITH_API_KEY }}
run: |
for file in $(find docs/docs/how-tos -name "*.ipynb")
do
echo "Executing $file"
PIP_PRE=1 poetry run jupyter execute "$file"
done
./docs/_scripts/execute_notebooks.sh
- name: Stop services
run: make stop-services
2 changes: 1 addition & 1 deletion docs/_scripts/execute_notebooks.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
for file in $(find docs/docs/how-tos -name "*.ipynb" | grep -v ".ipynb_checkpoints")
do
echo "Executing $file"
jupyter execute "$file"
poetry run jupyter execute "$file"
done

0 comments on commit 47831bc

Please sign in to comment.