From 2309feffa7d577236f1492d2fe2e49d742e15dae 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 | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2b41184f..44dc37ca 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 - run: python -c "from ipyvuetify import Btn" + - name: Import b4 + run: pwd; 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