From 4a49cde844ba131a161fdc9744c61ac49996fa1e Mon Sep 17 00:00:00 2001 From: Mario Buikhuizen Date: Tue, 4 Apr 2023 11:26:47 +0200 Subject: [PATCH] try --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2b41184f..f0dcbdf6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,8 +32,9 @@ jobs: - name: Build run: | python setup.py sdist bdist_wheel - - name: Import + - name: Import b4 run: python -c "from ipyvuetify import Btn" + continue-on-error: true - name: Archive code coverage results uses: actions/upload-artifact@v3 with: @@ -41,8 +42,10 @@ jobs: path: dist - name: Install run: pip install `find dist -name "*whl" |head -n1` + - name: check + run: which python; which pip - name: Import - run: python -c "from ipyvuetify import Btn" + run: (mkdir bla; cd bla; pwd; python -c "from ipyvuetify import Btn") - name: show wheel run: unzip -l `find dist -name "*whl" |head -n1` - name: Set-up to fail