On Windows, Git is often set up to convert Unix line-endings to Windows line-endings automatically for text files. This auto-conversion caused should_decompress_asyoulik_txt to fail for me on Windows.
Adding the gitattributes file avoids the auto-conversion and allows the test to pass.
Thanks a lot! This seems like a very simple fix to alleviate possible frustration. I don't develop on Windows myself, so I apologize for not noticing the problem you had.
On Windows, Git is often set up to convert Unix line-endings to Windows line-endings automatically for text files. This auto-conversion caused
should_decompress_asyoulik_txt
to fail for me on Windows.Adding the gitattributes file avoids the auto-conversion and allows the test to pass.