Upgrade to jupyter_client 8.8.0 #2232
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test downstream projects | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| concurrency: | |
| group: downstream-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| nbclient: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Base Setup | |
| uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |
| - name: Run Test | |
| uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1 | |
| with: | |
| package_name: nbclient | |
| env_values: IPYKERNEL_CELL_NAME=\<IPY-INPUT\> | |
| ipywidgets: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Base Setup | |
| uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |
| - name: Run Test | |
| uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1 | |
| with: | |
| package_name: ipywidgets | |
| test_command: pytest -vv -raXxs -W default --durations 10 --color=yes | |
| jupyter_client: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Base Setup | |
| uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |
| - name: Run Test | |
| uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1 | |
| with: | |
| package_name: jupyter_client | |
| test_command: "pytest -vv -raXxs -W default --durations 10 --color=yes -k 'not (test_input_request or signal_kernel_subprocess)'" | |
| ipyparallel: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Base Setup | |
| uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |
| - name: Run Test | |
| uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1 | |
| with: | |
| package_name: ipyparallel | |
| package_spec: '-e ".[test]"' | |
| jupyter_kernel_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Base Setup | |
| uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |
| - name: Run Test | |
| run: | | |
| git clone https://github.com/jupyter/jupyter_kernel_test.git | |
| cd jupyter_kernel_test | |
| pip install -e ".[test]" | |
| python test_ipykernel.py |