Skip to content

Commit ff443c5

Browse files
committed
ci: Compare cells of the generated notebook file
1 parent af32a48 commit ff443c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/verify-examples.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ for file in *.ipynb; do
2424
if ! uv run --no-sync jupyter nbconvert --to notebook --execute "$file" --output "$outfile" --ExecutePreprocessor.timeout "${NOTEBOOK_TIMEOUT_SEC:-300}"; then
2525
ok=false
2626
else
27-
new_outputs="$(celloutputs "$file")"
27+
new_outputs="$(celloutputs "$outfile")"
2828
if ! diff -u3 <(echo "$old_outputs") <(echo "$new_outputs"); then
2929
ok=false
3030
fi

0 commit comments

Comments
 (0)