Skip to content

Commit 03dd1b9

Browse files
committed
nbclient time
1 parent 4d071aa commit 03dd1b9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/actions/test-downstream/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
package_spec=${package_spec:-"${{inputs.package_name}}[test]"}
2323
pytest_args="${{inputs.pytest_args}}"
2424
pytest_args=${pytest_args:-"--pyargs ${{inputs.package_name}}"}
25-
eval ${{inputs.env_values}}
25+
eval "${{inputs.env_values}}"
2626
2727
# Set up venv
2828
python -m venv test_venv

.github/workflows/downstream.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ jobs:
1717
- name: Base Setup
1818
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
1919

20-
- name: Test IPykernel
21-
uses: ./.github/actions/test-downstream
22-
with:
23-
package_name: ipykernel
24-
package_spec: "pyqt5 ipykernel[test]"
20+
# - name: Test IPykernel
21+
# uses: ./.github/actions/test-downstream
22+
# with:
23+
# package_name: ipykernel
24+
# package_spec: "pyqt5 ipykernel[test]"
2525

2626
- name: Test NBClient
2727
uses: ./.github/actions/test-downstream
2828
with:
2929
package_name: nbclient
30-
env_values: 'IPYKERNEL_CELL_NAME="<IPY-INPUT>"'
30+
env_values: IPYKERNEL_CELL_NAME=<IPY-INPUT>
3131

3232
- name: Test QtConsole
3333
uses: ./.github/actions/test-downstream

0 commit comments

Comments
 (0)