Skip to content

Commit 4577b5f

Browse files
committed
always exclude BootstrapTest
That's the default in CMakeLists.txt, need to set it when overriding.
1 parent 6385f0c commit 4577b5f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,9 @@ config-settings."cmake.define.CMAKE_JOB_POOLS" = "compile=4;link=1"
138138
select = ["*-manylinux_armv7l"]
139139
inherit.config-settings = "append"
140140
# disable some tests
141+
# - BootstrapTest fails with custom OpenSSL and probably does not make much sense for this project
141142
# - RunCMake.CompilerId fails because architecture id is not detected properly for gfortran on Ubuntu 20.04 https://gitlab.kitware.com/cmake/cmake/-/issues/27129
142-
config-settings."cmake.define.RUN_CMAKE_TEST_EXCLUDE" = "RunCMake.CompilerId"
143+
config-settings."cmake.define.RUN_CMAKE_TEST_EXCLUDE" = "BootstrapTest|RunCMake.CompilerId"
143144

144145
[[tool.cibuildwheel.overrides]]
145146
select = ["*-musllinux_*"]
@@ -162,8 +163,9 @@ config-settings."cmake.define.RUN_CMAKE_TEST_EXCLUDE" = "BootstrapTest|CTestTest
162163
select = ["*-manylinux_ppc64le", "*-manylinux_s390x"]
163164
inherit.config-settings = "append"
164165
# disable some tests
166+
# - BootstrapTest fails with custom OpenSSL and probably does not make much sense for this project
165167
# - RunCMake.execute_process fails because QEMU prints on stderr on SIGSEGV
166-
config-settings."cmake.define.RUN_CMAKE_TEST_EXCLUDE" = "RunCMake.execute_process"
168+
config-settings."cmake.define.RUN_CMAKE_TEST_EXCLUDE" = "BootstrapTest|RunCMake.execute_process"
167169

168170
[[tool.cibuildwheel.overrides]]
169171
select = ["*-musllinux_{ppc64le,s390x,riscv64}"]

0 commit comments

Comments
 (0)