Skip to content

Commit

Permalink
temp: install ipyvue from branch
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Nov 1, 2023
1 parent d671636 commit 2e5ab85
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand All @@ -88,8 +90,9 @@ jobs:
- uses: actions/download-artifact@v3
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
Expand Down

0 comments on commit 2e5ab85

Please sign in to comment.