Skip to content

Commit b8a4b7b

Browse files
committed
Point to jupyter which is not in path on Mac now
1 parent 6ee8949 commit b8a4b7b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/job.test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ jobs:
389389
- os: 'windows'
390390
py_cmd: python
391391
- os: 'macos'
392-
py_cmd: python
392+
py_cmd: python3
393393
- os: 'ubuntu'
394394
py_cmd: python
395395
steps:
@@ -414,10 +414,10 @@ jobs:
414414
- name: Validate the install
415415
run: |
416416
set -eux
417-
jupyter labextension list
418-
jupyter server extension list
419-
jupyter labextension list 2>&1 | grep -ie "jupyterlab-lsp.*enabled.*ok" -
420-
jupyter server extension list 2>&1 | grep -ie "jupyter_lsp.*enabled" -
417+
${{ matrix.py_cmd }} -m jupyter labextension list
418+
${{ matrix.py_cmd }} -m jupyter server extension list
419+
${{ matrix.py_cmd }} -m jupyter labextension list 2>&1 | grep -ie "jupyterlab-lsp.*enabled.*ok" -
420+
${{ matrix.py_cmd }} -m jupyter server extension list 2>&1 | grep -ie "jupyter_lsp.*enabled" -
421421
422422
source:
423423
name: smoke source install ${{ matrix.os }} py${{ matrix.python }} lab${{ matrix.lab }}

0 commit comments

Comments
 (0)