File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments