Browse Source

Inspect ipython and ipykernel versions

Fabien Lelaquais 5 tháng trước cách đây
mục cha
commit
de3d89a41e
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  1. 5 1
      .github/actions/gui-test/e2e/action.yml

+ 5 - 1
.github/actions/gui-test/e2e/action.yml

@@ -4,7 +4,11 @@ runs:
   steps:
     - name: install kernel
       shell: bash
-      run: pipenv run ipython kernel install --name "python3" --user
+      run: |
+        pipenv run python --version
+        pipenv run pip freeze | grep "ipython\|ipykernel"
+        pipenv run ipython kernel install --name "python3" --user
+        pipenv run jupyter kernelspec listter kernelspec list
     - name: run tests
       shell: bash
       run: pipenv run pytest -m "teste2e" tests/gui