Blosc / bloscpack

Command line interface to and serialization format for Blosc
BSD 3-Clause "New" or "Revised" License
122 stars 27 forks source link

Fix: test_append_mix_shuffle #82

Closed esc closed 5 years ago

esc commented 5 years ago

As of blosc 1.6.1 this test was failing. Basically, the linspace data used in the test is no longer compressible by blosc when not using the shuffle, because the internal threshold has probaby changed. We circumvent this issue, by using np.zeors which is certainly compressible, with and without shuffle. The code is now a little bit irky so more comments were added.

esc commented 5 years ago

The remaining errors are because snappy isn't being compiled by default since python-blosc 1.6.1.

esc commented 5 years ago

This should eliminate all errors on master that are not related to snappy.