diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 21ffac5c..7f41edee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,7 +52,8 @@ jobs: # Use silx wheelhouse: needed for ppc64le CIBW_ENVIRONMENT_LINUX: "PIP_FIND_LINKS=https://www.silx.org/pub/wheelhouse/ PIP_TRUSTED_HOST=www.silx.org" - CIBW_TEST_REQUIRES: pytest + CIBW_TEST_REQUIRES: --only-binary :all: fabio + CIBW_TEST_EXTRAS: full CIBW_TEST_COMMAND: pytest {project}/test # Skip tests for 32bits and emulated architectures, arm64 macos and on Windows CIBW_TEST_SKIP: "*-*linux_i686 *-*linux_{aarch64,ppc64le,s390x} *-macosx_arm64 *-macosx_universal2:arm64 *-win32 *-win_amd64" @@ -87,7 +88,7 @@ jobs: - name: Install and test sdist run: | - pip install dist/imaged11*.tar.gz + pip install "$(ls dist/imaged11*.tar.gz)[full]" pytest test - uses: actions/upload-artifact@v4