We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce92841 commit fa1ee66Copy full SHA for fa1ee66
.github/actions/Emscripten-Notebook-Tests/action.yml
@@ -18,7 +18,6 @@ runs:
18
shell: bash -l {0}
19
run: |
20
set -e
21
- ps -a
22
micromamba create -n xeus-lite-host jupyterlite-core=0.6 jupyterlite-xeus -c conda-forge -y
23
micromamba activate xeus-lite-host
24
if [[ "${{ matrix.os }}" == "macos"* ]]; then
@@ -83,5 +82,9 @@ runs:
83
82
# Jupyter Lite website.
84
pkill -9 timeout
85
pkill -9 jupyter-lite
86
87
-
+ echo "All Processes using port 8000"
+ lsof -i :8000
+ echo "Killing all processes using port 8000"
88
+ kill -9 $(lsof -ti :8000)
89
90
0 commit comments