-
Notifications
You must be signed in to change notification settings - Fork 239
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pyodide builds: better support the use of Node.js-based script runners in CIBW_TEST_COMMAND
#1878
Comments
Let's see if we can fix the symbol visibility bugs instead. |
Update: symbol visibility bugs are now resolved with Pyodide's in-tree updates to SciPy for both This is now a little less relevant, but probably still relevant for the |
@agriyakhetarpal I haven't had time to double-check but I am guessing that scikit-learn test suite should run fine inside pyodide venv on Pyodide 0.27.0a2. A scikit-learn PR doing this would be more than welcome 😉! |
Yes, @lesteve! Already on it since yesterday – I can confirm that all tests for |
Description
Hi there! Recently, #1456 was merged and made available in version 2.19.0 through which experimental WebAssembly/Pyodide builds for packages can be performed using
--platform pyodide
or through setting theCIBW_PLATFORM
environment variable topyodide
.It would be great to possibly configure how the wheels are tested – for some packages such as
scikit-image
,statsmodels
, andscikit-learn
(cc: @lesteve), there are some issues with symbol visibility which leads to some bugs pertaining to unresolved symbols, especially those that come from a BLAS library such as OpenBLAS (see pyodide/pyodide#3865), where it is better to use a Node.js-based testing script (preceded by thenpm install pyodide@<pyodide version>
command) to runpytest
-based test suites inside Node.js, where these issues do not occur.Steps to reproduce
It is difficult to provide a minimal reproducer for this behaviour, however, the "Additional context" section below has a working CI example that can be helpful. The test environment that gets created installs Node.js and other machinery to render a Pyodide testing environment successfully, however, copying the built wheel to a suitable directory using the
{wheel}
placeholder does not work as smoothly – it is tricky to configure where the.node_modules/
folder gets created and I faced problems trying to install a wheel even whenpyodide
was installed bynpm
under{project}
.Proposed solution
Here's how I can envision this working right now, it might need a few refinements:
cibuildwheel
opens up an environment variableCIBW_TEST_COMMAND_PYODIDE_RUNNER:
that can be set to eitherxbuildenv
ornode
, where thenode
option will establishes atest_package.js
file that will contain some boilerplate code based on https://github.com/scikit-learn/scikit-learn/blob/main/build_tools/azure/pytest-pyodide.js or https://github.com/scikit-image/scikit-image/blob/main/tools/emscripten/pytest_scikit_image_pyodide.js.Packages listed in
CIBW_TEST_REQUIRES
can then be iterated over and installed via this snippet (I'm usingpytest
andmatplotlib
, for example):inside the script, and
pytest
can receive arguments based on Node.js'process.argv
, while the rest of the script can load Pyodide from the CDN, and construct aNODEFS
file system to copy the repaired/built wheel to (wheremicropip
installs the wheels and the test requirements). Therefore, this can be abstracted away underCIBW_TEST_COMMAND: pytest --pyargs <mypackage>
or similar, whereCIBW_TEST_COMMAND_PYODIDE_RUNNER
can govern how to run the test command.Additional context
This feature request comes from scikit-image/scikit-image#7440, where I am trying to use
cibuildwheel
forscikit-image
, which builds without problems, but fails because there is no reliable way to use Node.js because of the separate virtual environment that gets created bycibuildwheel
to run the tests (which exists for good reason), but also thatcibuildwheel
installsscikit-image
at the time of testing, which I cannot take advantage of because Pyodide will exit with a fatal error and not proceed with the test suite further.I understand that this could be too niche of a request to ask for since this is not an issue for the majority of packages out there even when considering compiled ones, however, this is a problem that is likely to stay for a while and has existed since some of the past few Pyodide versions. There could be more, but I know of at least three packages that face this issue, which are:
scikit-image
,scikit-learn
, andstatsmodels
, as mentioned above. Considering thatcibuildwheel
is the de facto standard to build wheels but also as a precursor to push them to nightly indices such as Anaconda.org (xref: pyodide/pyodide#3049), this would be valuable to implement. If it helps, I would be happy to try this out and put together a PR if I can receive a few pointers across the codebase – if this is deemed by the maintainers to be in scope forcibuildwheel
, that is.Edit: also cc @hoodmane and @ryanking13 for visibility.
Build log
Please see some of the recent runs under https://github.com/agriyakhetarpal/scikit-image/actions/workflows/nightly_wheel_build.yml
CI config
scikit-image/scikit-image#7440
The text was updated successfully, but these errors were encountered: