diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..8aec1d5 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,10 @@ +import pytest +import bitshuffle + +def pytest_report_header(config): + sse2 = bitshuffle.using_SSE2() + avx2 = bitshuffle.using_AVX2() + avx512 = bitshuffle.using_AVX512() + neon = bitshuffle.using_NEON() + return f"SSE2 {sse2}; AVX2 {avx2}; AVX512 {avx512}; NEON {neon}" +