Skip to content

Commit 2e5ab85

Browse files
temp: install ipyvue from branch
1 parent d671636 commit 2e5ab85

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ jobs:
7373
with:
7474
name: ipyvuetify-dist-${{ github.run_number }}
7575
- name: Install ipyvuetify
76-
run: python -m pip install "$(find dist -name *.whl)"
76+
run: |
77+
pip install jupyter_core jupyter-packaging "jupyterlab<4"
78+
python -m pip install https://github.com/widgetti/ipyvue/archive/refs/heads/vue3.zip "$(find dist -name *.whl)"
7779
- name: test import
7880
run: (mkdir test-install; cd test-install; python -c "from ipyvuetify import Btn")
7981

@@ -88,8 +90,9 @@ jobs:
8890
- uses: actions/download-artifact@v3
8991
with:
9092
name: ipyvuetify-dist-${{ github.run_number }}
91-
- name: Install ipyvuetify
92-
run: python -m pip install "$(find dist -name *.whl)[test]"
93+
run: |
94+
pip install jupyter_core jupyter-packaging "jupyterlab<4"
95+
python -m pip install https://github.com/widgetti/ipyvue/archive/refs/heads/vue3.zip "$(find dist -name *.whl)[test]"
9396
- name: Install chromium
9497
run: playwright install chromium
9598
- name: Run ui-tests

0 commit comments

Comments
 (0)