Skip to content

Commit ce597c6

Browse files
akxTitus-von-Koeller
authored andcommitted
Add commented-out test step to CI
1 parent 2416dd3 commit ce597c6

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/python-package.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,3 +171,33 @@ jobs:
171171
python-version: "3.12"
172172
- run: pip install auditwheel
173173
- run: python ./.github/scripts/auditwheel_show.py wheels/* | tee $GITHUB_STEP_SUMMARY
174+
175+
# test:
176+
# needs:
177+
# - build-wheels
178+
# strategy:
179+
# fail-fast: false
180+
# matrix:
181+
# include:
182+
# - os: ubuntu-latest
183+
# arch: x86_64
184+
# python-version: "3.8"
185+
# - os: windows-latest
186+
# arch: x86_64
187+
# python-version: "3.8"
188+
# runs-on: ${{ matrix.os }}
189+
# steps:
190+
# - uses: actions/checkout@v4
191+
# - uses: actions/download-artifact@v4
192+
# with:
193+
# merge-multiple: true
194+
# pattern: "bdist_wheel_${{ matrix.os }}_${{ matrix.arch }}*"
195+
# path: wheel/
196+
# - uses: actions/setup-python@v5
197+
# with:
198+
# python-version: ${{ matrix.python-version }}
199+
# cache: pip
200+
# - shell: bash
201+
# run: ls -lar wheel/
202+
# - run: pip install wheel/*.whl -r requirements-ci.txt
203+
# - run: pytest --log-cli-level=DEBUG --continue-on-collection-errors tests

0 commit comments

Comments
 (0)