From 5146eaa517cfe2375994d96dcfd2dd417fd66b40 Mon Sep 17 00:00:00 2001 From: Sean Gillies Date: Fri, 15 Oct 2021 13:08:08 -0600 Subject: [PATCH] Our test server doesn't work on macos or windows Perhaps some defficiency in multiprocessing, which is superseded by concurrent.futures. --- tests/test_warp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_warp.py b/tests/test_warp.py index 1776b596..ce08a56d 100644 --- a/tests/test_warp.py +++ b/tests/test_warp.py @@ -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."""