We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69bbc57 commit 2309fefCopy full SHA for 2309fef
1 file changed
.github/workflows/test.yml
@@ -32,17 +32,20 @@ jobs:
32
- name: Build
33
run: |
34
python setup.py sdist bdist_wheel
35
- - name: Import
36
- run: python -c "from ipyvuetify import Btn"
+ - name: Import b4
+ run: pwd; python -c "from ipyvuetify import Btn"
37
+ continue-on-error: true
38
- name: Archive code coverage results
39
uses: actions/upload-artifact@v3
40
with:
41
name: dist
42
path: dist
43
- name: Install
44
run: pip install `find dist -name "*whl" |head -n1`
45
+ - name: check
46
+ run: which python; which pip
47
- name: Import
48
+ run: (mkdir bla; cd bla; pwd; python -c "from ipyvuetify import Btn")
49
- name: show wheel
50
run: unzip -l `find dist -name "*whl" |head -n1`
51
- name: Set-up to fail
0 commit comments