Skip to content

Commit a1349e3

Browse files
committed
ignore llamaindex notebook
1 parent 5f199ef commit a1349e3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/scripts/run_notebooks.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ cd docs/examples
99
# Function to process a notebook
1010
process_notebook() {
1111
notebook="$1"
12-
if [ "$notebook" != "valid_chess_moves.ipynb" ] && [ "$notebook" != "translation_with_quality_check.ipynb" ]; then
12+
invalid_notebooks=("valid_chess_moves.ipynb" "translation_with_quality_check.ipynb" "llamaindex-output-parsing.ipynb")
13+
if [[ ! " ${invalid_notebooks[@]} " =~ " ${notebook} " ]]; then
1314
echo "Processing $notebook..."
1415
poetry run jupyter nbconvert --to notebook --execute "$notebook"
1516
if [ $? -ne 0 ]; then

0 commit comments

Comments
 (0)