tus / tus-py-client

A Python client for the tus resumable upload protocol
https://tus.io/
MIT License
169 stars 45 forks source link

Fix failing CI tests #49

Closed Acconut closed 11 months ago

nhairs commented 11 months ago

I'm assuming this was related to the Windows tests failing. Looks like it was because git was automatically converting \n to \r\n newlines for text files. Because the test files were text files they were affected.

Adding in static test files and adding a .gitattributes file appears to have solved this

Acconut commented 11 months ago

Thanks for looking into this! The Windows tests have been bothering us for some time, but you were able to fix them 🎉 I will have a thorough look at your PR soon.