Skip to content

Commit 52f9839

Browse files
Fix failing unit tests in CI
1 parent 8eb51fa commit 52f9839

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,19 +82,18 @@ jobs:
8282
- name: Check the Notebook Server extension is installed
8383
run: |
8484
jupyter serverextension list
85-
jupyter serverextension list 2>&1 | grep -iE "jupyterlmod.*OK" -
85+
jupyter serverextension list 2>&1 | grep -iE "jupyterlab-lmod.*OK" -
8686
8787
- name: Check the Jupyter Server extension is installed
8888
run: |
8989
pip install jupyter-server
9090
jupyter server extension list
91-
jupyter server extension list 2>&1 | grep -iE "jupyterlmod.*OK" -
91+
jupyter server extension list 2>&1 | grep -iE "jupyterlab-lmod.*OK" -
9292
9393
- name: Install JupyterLab Extension
9494
if: matrix.jupyterlab-version == '2'
9595
run: |
9696
export NODE_OPTIONS=--openssl-legacy-provider
97-
cd labextension
9897
jupyter labextension install . --no-build --debug
9998
jupyter lab build --minimize=False --debug
10099
@@ -106,5 +105,5 @@ jobs:
106105
# if: ${{ !(matrix.jupyterlab-version == '2' && matrix.jupyter_server-version != '1') }}
107106
run: |
108107
jupyter labextension list
109-
jupyter labextension list 2>&1 | grep -iE '@jupyterlab/jupyterlmod.*OK.*'
108+
jupyter labextension list 2>&1 | grep -iE '@jupyterlab/jupyterlab-lmod.*OK.*'
110109
python -m jupyterlab.browser_check

0 commit comments

Comments
 (0)