Trying to debug musllinux image not detecting the libsndfile library.

This commit is contained in:
Josh W 2024-09-04 20:57:19 -04:00
parent c5c32ab5fd
commit 182ac825de

View file

@ -1,10 +1,5 @@
[build-system]
requires = [
'wheel',
'setuptools',
'Cython',
'setuptools_scm[toml]',
]
requires = ['wheel', 'setuptools', 'Cython', 'setuptools_scm[toml]']
build-backend = 'setuptools.build_meta'
[tool.cibuildwheel]
@ -25,7 +20,7 @@ before-test = "brew install libsndfile"
[[tool.cibuildwheel.overrides]]
select = '*-musllinux*'
before-test = "apk add libsndfile"
before-test = ['apk add libsndfile', 'find / | grep libsndfile']
[tool.pytest.ini_options]
minversion = '6.0'