File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -171,3 +171,33 @@ jobs:
171
171
python-version : " 3.12"
172
172
- run : pip install auditwheel
173
173
- 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
You can’t perform that action at this time.
0 commit comments