From ce597c639c66e0d049e0a42c33e56db07844f21f Mon Sep 17 00:00:00 2001 From: Aarni Koskela <akx@iki.fi> Date: Fri, 8 Mar 2024 11:23:10 +0200 Subject: [PATCH] Add commented-out test step to CI --- .github/workflows/python-package.yml | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 40671d68e..ba5961f72 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -171,3 +171,33 @@ jobs: python-version: "3.12" - run: pip install auditwheel - run: python ./.github/scripts/auditwheel_show.py wheels/* | tee $GITHUB_STEP_SUMMARY + +# test: +# needs: +# - build-wheels +# strategy: +# fail-fast: false +# matrix: +# include: +# - os: ubuntu-latest +# arch: x86_64 +# python-version: "3.8" +# - os: windows-latest +# arch: x86_64 +# python-version: "3.8" +# runs-on: ${{ matrix.os }} +# steps: +# - uses: actions/checkout@v4 +# - uses: actions/download-artifact@v4 +# with: +# merge-multiple: true +# pattern: "bdist_wheel_${{ matrix.os }}_${{ matrix.arch }}*" +# path: wheel/ +# - uses: actions/setup-python@v5 +# with: +# python-version: ${{ matrix.python-version }} +# cache: pip +# - shell: bash +# run: ls -lar wheel/ +# - run: pip install wheel/*.whl -r requirements-ci.txt +# - run: pytest --log-cli-level=DEBUG --continue-on-collection-errors tests