Skip to content

Commit 1631cf0

Browse files
Fix early termination of integration test (#1142)
Signed-off-by: Mingxin Zheng <18563433+mingxin-zheng@users.noreply.github.com> Fixes #1141 . ### Description break -> continue ### Checks <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Avoid including large-size files in the PR. - [x] Clean up long text outputs from code cells in the notebook. - [x] Remove private info such as user name and private key from the notebook and script files. - [x] Ensure (1) hyperlinks and markdown anchors are working (2) use relative paths for tutorial repo files (3) put figure and graphs in the `./figure` folder - [x] Notebook runs automatically `./runner.sh -t <path to .ipynb file>` Signed-off-by: Mingxin Zheng <18563433+mingxin-zheng@users.noreply.github.com>
1 parent 8abec25 commit 1631cf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runner.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ for file in "${files[@]}"; do
339339

340340
if [ $skipRun = true ]; then
341341
echo "Skipping"
342-
break
342+
continue
343343
fi
344344

345345
echo Running notebook...

0 commit comments

Comments
 (0)