mirror of
https://github.com/rasterio/rasterio.git
synced 2025-12-08 17:36:12 +00:00
Our test server doesn't work on macos or windows
Perhaps some defficiency in multiprocessing, which is superseded by concurrent.futures.
This commit is contained in:
parent
ee397e2d12
commit
5146eaa517
@ -2003,8 +2003,8 @@ def http_error_server(data):
|
||||
|
||||
@requires_gdal3
|
||||
@pytest.mark.skipif(
|
||||
sys.version_info < (3, 7),
|
||||
reason="Python 3.7 required to serve the data fixture directory",
|
||||
sys.version_info < (3, 7) and sys.platform != "linux",
|
||||
reason="Python 3.7 required to serve the data fixture directory and the server fixture requires Linux",
|
||||
)
|
||||
def test_reproject_error_propagation(http_error_server, caplog):
|
||||
"""Propagate errors up from ChunkAndWarpMulti and check for a retry."""
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user