Skip to content

Commit cf9bca7

Browse files
fix github release download
1 parent af6fac7 commit cf9bca7

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,7 @@ jobs:
7575
name: ipyvuetify-dist-${{ github.run_number }}
7676
- name: Install ipyvuetify
7777
run: |
78-
pip install jupyter_core jupyter-packaging "jupyterlab<4"
79-
mkdir -p /tmp/ipyvue-wheel
80-
gh release download vue3-dev --repo widgetti/ipyvue --pattern "*.whl" --dir /tmp/ipyvue-wheel --clobber
81-
python -m pip install /tmp/ipyvue-wheel/*.whl "$(find dist -name '*.whl')"
78+
python -m pip install jupyter_core jupyter-packaging "jupyterlab<4" "$(find dist -name '*.whl')"
8279
- name: test import
8380
run: (mkdir test-install; cd test-install; python -c "from ipyvuetify import Btn")
8481

@@ -95,10 +92,7 @@ jobs:
9592
name: ipyvuetify-dist-${{ github.run_number }}
9693
- name: Install ipyvuetify
9794
run: |
98-
pip install jupyter_core jupyter-packaging "jupyterlab<4"
99-
mkdir -p /tmp/ipyvue-wheel
100-
gh release download vue3-dev --repo widgetti/ipyvue --pattern "*.whl" --dir /tmp/ipyvue-wheel --clobber
101-
python -m pip install /tmp/ipyvue-wheel/*.whl "$(find dist -name '*.whl')[test]"
95+
python -m pip install jupyter_core jupyter-packaging "jupyterlab<4" "$(find dist -name '*.whl')[test]"
10296
- name: Install chromium
10397
run: playwright install chromium
10498
- name: Run ui-tests

0 commit comments

Comments
 (0)