geopandas / xyzservices

Source of XYZ tiles providers
https://xyzservices.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
169 stars 32 forks source link

do not package a tests module #97

Closed ocefpaf closed 3 years ago

ocefpaf commented 3 years ago

The current setup packages the tests directory as a module. B/c many Python libraries make that mistake it causes clobber errors downstream. This PR removes this behavior but if the authors want to ship the tests with the library the "right" thing to do is to move it inside the module folder.

martinfleis commented 3 years ago

Thanks! I don't think it is necessary to ship tests with the package. @darribas any thoughts?

QuLogic commented 2 years ago

Tests in the sdist are good; it means we can install and test from there without resorting to finding the right GitHub repo.