Skip to content

Commit 2e2aa8c

Browse files
authored
Update main.yml
1 parent 174f720 commit 2e2aa8c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -355,16 +355,16 @@ jobs:
355355
# to run notebooks in it. If you try to run the notebooks before the website is
356356
# ready the ci python script will crash saying ti cannot access the url
357357
sleep 10
358-
python scripts/automated-notebook-run-script.py --driver chrome --notebook ${{ matrix.notebook }} --kernel ${{ matrix.kernel }}
358+
python -u scripts/automated-notebook-run-script.py --driver chrome --notebook ${{ matrix.notebook }} --kernel ${{ matrix.kernel }}
359359
nbdiff notebooks/${{ matrix.notebook }} $HOME/Downloads/${{ matrix.notebook }} --ignore-id --ignore-metadata
360360
rm $HOME/Downloads/${{ matrix.notebook }}
361-
python scripts/automated-notebook-run-script.py --driver firefox --notebook ${{ matrix.notebook }} --kernel ${{ matrix.kernel }}
361+
python -u scripts/automated-notebook-run-script.py --driver firefox --notebook ${{ matrix.notebook }} --kernel ${{ matrix.kernel }}
362362
nbdiff notebooks/${{ matrix.notebook }} $HOME/Downloads/${{ matrix.notebook }} --ignore-id --ignore-metadata
363363
rm $HOME/Downloads/${{ matrix.notebook }}
364364
if [[ "${{ matrix.os }}" == "macos"* ]]; then
365365
python -m pip install PyAutoGUI
366366
python scripts/enable-downloads-safari-github-ci.py
367-
python scripts/automated-notebook-run-script.py --driver safari --notebook ${{ matrix.notebook }} --kernel ${{ matrix.kernel }}
367+
python -u scripts/automated-notebook-run-script.py --driver safari --notebook ${{ matrix.notebook }} --kernel ${{ matrix.kernel }}
368368
nbdiff notebooks/${{ matrix.notebook }} $HOME/Downloads/${{ matrix.notebook }} --ignore-id --ignore-metadata
369369
rm $HOME/Downloads/${{ matrix.notebook }}
370370
fi

0 commit comments

Comments
 (0)