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:
Sean Gillies 2021-10-15 13:08:08 -06:00
parent ee397e2d12
commit 5146eaa517

View File

@ -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."""