We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2e3c7d commit 6e5666fCopy full SHA for 6e5666f
1 file changed
.github/actions/Emscripten-Notebook-Tests/action.yml
@@ -37,6 +37,10 @@ runs:
37
touch safari_diff.txt
38
if [[ "${{ matrix.os }}" == "macos"* ]]; then
39
echo "Running xeus-cpp in Jupter Lite in Safari"
40
+ # Kill any stale Safari/safaridriver processes
41
+ pkill -9 Safari 2>/dev/null || true
42
+ pkill -9 safaridriver 2>/dev/null || true
43
+ sleep 3
44
python -u scripts/automated-notebook-run-script.py --driver safari --notebook ${{ inputs.notebook }} --kernel ${{ inputs.kernel }} $INPUT_TEXT
45
nbdiff notebooks/${{ inputs.notebook }} $HOME/Downloads/${{ inputs.notebook }} --ignore-id --ignore-metadata >> safari_diff.txt
46
export SAFARI_TESTS_RETURN_VALUE=$( [ -s safari_diff.txt ] && echo 1 || echo 0 )
0 commit comments