Skip to content

Commit db78864

Browse files
authored
Copy async-kernel kernelspec to user directory (#70)
The async-kernel installs to Python's share directory, but the test suite looks in ~/.local/share/jupyter/kernels/. Copy the kernelspec after installation so it can be found.
1 parent 006b626 commit db78864

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/conformance.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ jobs:
2727
install: pip install ipykernel && python -m ipykernel install --user
2828
kernel-name: python3
2929
- name: async-kernel
30-
install: pip install async-kernel && async-kernel -a async
30+
install: |
31+
pip install async-kernel
32+
async-kernel -a async
33+
mkdir -p ~/.local/share/jupyter/kernels
34+
cp -r $pythonLocation/share/jupyter/kernels/async ~/.local/share/jupyter/kernels/
3135
kernel-name: async
3236
- name: evcxr
3337
install: |

0 commit comments

Comments
 (0)