diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c549aba3..1720bf2c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -73,7 +73,9 @@ jobs: with: name: ipyvuetify-dist-${{ github.run_number }} - name: Install ipyvuetify - run: python -m pip install "$(find dist -name *.whl)" + run: | + pip install jupyter_core jupyter-packaging "jupyterlab<4" + python -m pip install https://github.com/widgetti/ipyvue/archive/refs/heads/vue3.zip "$(find dist -name *.whl)" - name: test import run: (mkdir test-install; cd test-install; python -c "from ipyvuetify import Btn") @@ -89,7 +91,9 @@ jobs: with: name: ipyvuetify-dist-${{ github.run_number }} - name: Install ipyvuetify - run: python -m pip install "$(find dist -name *.whl)[test]" + run: | + pip install jupyter_core jupyter-packaging "jupyterlab<4" + python -m pip install https://github.com/widgetti/ipyvue/archive/refs/heads/vue3.zip "$(find dist -name *.whl)[test]" - name: Install chromium run: playwright install chromium - name: Run ui-tests