소스 검색

Inspect ipython and ipykernel versions

Fabien Lelaquais 5 달 전
부모
커밋
de3d89a41e
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  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