Skip to content

Commit

Permalink
ignore llamaindex notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
zsimjee committed Dec 4, 2023
1 parent 5f199ef commit a1349e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/scripts/run_notebooks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ cd docs/examples
# Function to process a notebook
process_notebook() {
notebook="$1"
if [ "$notebook" != "valid_chess_moves.ipynb" ] && [ "$notebook" != "translation_with_quality_check.ipynb" ]; then
invalid_notebooks=("valid_chess_moves.ipynb" "translation_with_quality_check.ipynb" "llamaindex-output-parsing.ipynb")
if [[ ! " ${invalid_notebooks[@]} " =~ " ${notebook} " ]]; then
echo "Processing $notebook..."
poetry run jupyter nbconvert --to notebook --execute "$notebook"
if [ $? -ne 0 ]; then
Expand Down

0 comments on commit a1349e3

Please sign in to comment.