1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Ole Streicher <olebole@debian.org>
Date: Tue, 7 Feb 2023 20:54:02 +0100
Subject: Skip test that downloads external file
---
reproject/interpolation/tests/test_core.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/reproject/interpolation/tests/test_core.py b/reproject/interpolation/tests/test_core.py
index f59028b..59b0a6b 100644
--- a/reproject/interpolation/tests/test_core.py
+++ b/reproject/interpolation/tests/test_core.py
@@ -708,6 +708,7 @@ def test_blocked_broadcast_reprojection(input_extra_dims, output_shape, parallel
@pytest.mark.parametrize("parallel", [True, 2, False])
@pytest.mark.parametrize("block_size", [[40, 40], [500, 500], [500, 100], None])
+@pytest.mark.skip(reason="Requires external connection")
def test_blocked_against_single(parallel, block_size):
# Ensure when we break a reprojection down into multiple discrete blocks
|