Update warp test results for GDAL 3.11#3394
Conversation
b905595 to
e6be7ce
Compare
4d9e6f7 to
17889c4
Compare
|
I added CI for all of 3.10 and can see that the conditions for #3330 are a bit off: https://github.com/rasterio/rasterio/actions/runs/17524587082?pr=3394 The change only seems to have gone in to 3.11. So I've modified those (and also simplified the conditions a bit), and also added CI for 3.11. Tests fail on GDAL-latest for a different reason, that I've not figured out yet. |
|
Failing test with GDAL 3.12 (currently "latest") is related to: Maybe xfail or skip mark should be added if GDAL version is >= 3.12 as the same check is now performed by GDAL internally. (If failure and not just warning is intended behavior) |
|
👍 But it is: CPLE_IllegalArgError |
|
Oops, I knew I should have tried compiling first. |
|
👍 |
Co-authored-by: Sylvester <[email protected]>
These were set to differ with GDAL 3.10.2 in rasterio#3330, but it appears the change only actually came in with GDAL 3.11.
GDAL 3.12 now has a more specific error for incorrect tile size [1], but for backwards compatibility, catch that and raise the same one that used to be raised. [1] OSGeo/gdal#12679
|
This |
|
I will try to repeat tests several times and see, if there is any pattern. |
|
Thanks @QuLogic! I extracted commits and linked other PRs inspired by this one to resolve the issues. |
I took @w8sl's comments for why from #3389 (comment)
This is based on #3389, and together should be enough to fix tests against GDAL 3.11.
Fixes #3321