Skip to content

Commit 2309fef

Browse files
try
1 parent 69bbc57 commit 2309fef

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,20 @@ jobs:
3232
- name: Build
3333
run: |
3434
python setup.py sdist bdist_wheel
35-
- name: Import
36-
run: python -c "from ipyvuetify import Btn"
35+
- name: Import b4
36+
run: pwd; python -c "from ipyvuetify import Btn"
37+
continue-on-error: true
3738
- name: Archive code coverage results
3839
uses: actions/upload-artifact@v3
3940
with:
4041
name: dist
4142
path: dist
4243
- name: Install
4344
run: pip install `find dist -name "*whl" |head -n1`
45+
- name: check
46+
run: which python; which pip
4447
- name: Import
45-
run: python -c "from ipyvuetify import Btn"
48+
run: (mkdir bla; cd bla; pwd; python -c "from ipyvuetify import Btn")
4649
- name: show wheel
4750
run: unzip -l `find dist -name "*whl" |head -n1`
4851
- name: Set-up to fail

0 commit comments

Comments
 (0)