You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For reason's briefly discussed in dask/dask#7170 (comment), openSUSE does not have numpy for Python 3.6 in the Tumbleweed distribution anymore. At the same time, we need to have a working test suite to make sure that the built package works (without numpy functionality of course.)
Most tests of distributed involving (runtime optional) numpy are already skipped automatically if numpy is not present. But there are some ERRORs and FAILs:
Thanks for reporting @bnavigator! Looking at a few of the tests listed above, using np = pytest.importorskip("numpy") instead of import numpy as np will ensure we automatically skip tests when NumPy isn't installed. Feel free to submit your current patch as a PR if you'd like (though no obligation)
For reason's briefly discussed in dask/dask#7170 (comment), openSUSE does not have numpy for Python 3.6 in the Tumbleweed distribution anymore. At the same time, we need to have a working test suite to make sure that the built package works (without numpy functionality of course.)
Most tests of distributed involving (runtime optional) numpy are already skipped automatically if numpy is not present. But there are some ERRORs and FAILs:
I am using this ad-hoc patch right now. It might need some polishing to meet your code standards:
importorskip-numpy-tests.patch.txt
The text was updated successfully, but these errors were encountered: