File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1919 name : Wheels for ${{ matrix.name }}
2020 runs-on : ${{ matrix.os }}
2121 strategy :
22+ # let other jobs in matrix complete if one fails
23+ fail-fast : false
2224 matrix :
2325 include :
2426 - name : linux-amd
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ test-command = "pytest"
1515test-sources = [" test" , " pytest.ini" ]
1616before-test = " pip install -r {project}/requirements-test.txt"
1717# Will avoid testing on emulated architectures (specifically ppc64le)
18- test-skip = " *-*linux_ppc64le"
18+ # Also, skip testing on pypy on macOS arm64 due issue with bootstrapping git config paths
19+ test-skip = " *-*linux_ppc64le pypy*-macosx*arm64"
1920
2021[tool .cibuildwheel .linux ]
2122repair-wheel-command = " LD_LIBRARY_PATH=/project/ci/lib64 auditwheel repair -w {dest_dir} {wheel}"
You can’t perform that action at this time.
0 commit comments