Windows for some reason have a 260 character limit on file path and tests might fail while making a temporary file with a long name.
As a temporary solution I have modified fs.py to explicitly use extended-length path, by changing open(path_str, 'wb') to open('\\\\?\\' + path_str, 'wb') .
Windows for some reason have a 260 character limit on file path and tests might fail while making a temporary file with a long name.
As a temporary solution I have modified fs.py to explicitly use extended-length path, by changing
open(path_str, 'wb')
toopen('\\\\?\\' + path_str, 'wb')
.