diff --git a/docs/source/conf.py b/docs/source/conf.py index f6b1daef9..d9e495a52 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -97,6 +97,9 @@ '../../examples/web_services/reprojected_wmts.py', '../../examples/web_services/wmts.py', '../../examples/web_services/wmts_time.py', + # OSGeo WMS has been shut off + # https://discourse.osgeo.org/t/map-tile-loading-pin-location-issues/6910/2 + '../../examples/web_services/wms.py' ], 'filename_pattern': '^((?!sgskip).)*$', 'gallery_dirs': ['gallery'], diff --git a/lib/cartopy/tests/io/test_ogc_clients.py b/lib/cartopy/tests/io/test_ogc_clients.py index 87a9a77a7..ef4ff1267 100644 --- a/lib/cartopy/tests/io/test_ogc_clients.py +++ b/lib/cartopy/tests/io/test_ogc_clients.py @@ -35,6 +35,7 @@ @pytest.mark.network +@pytest.mark.xfail(reason='URL no longer valid') @pytest.mark.skipif(not _OWSLIB_AVAILABLE, reason='OWSLib is unavailable.') class TestWMSRasterSource: URI = 'http://vmap0.tiles.osgeo.org/wms/vmap0' diff --git a/lib/cartopy/tests/mpl/test_web_services.py b/lib/cartopy/tests/mpl/test_web_services.py index b6fed16dc..6207e7bbb 100644 --- a/lib/cartopy/tests/mpl/test_web_services.py +++ b/lib/cartopy/tests/mpl/test_web_services.py @@ -31,6 +31,7 @@ def test_wmts(): @pytest.mark.network +@pytest.mark.xfail(reason='URL no longer valid') @pytest.mark.skipif(not _OWSLIB_AVAILABLE, reason='OWSLib is unavailable.') def test_wms_tight_layout(): ax = plt.axes(projection=ccrs.PlateCarree()) @@ -41,6 +42,7 @@ def test_wms_tight_layout(): @pytest.mark.network +@pytest.mark.xfail(reason='URL no longer valid') @pytest.mark.skipif(not _OWSLIB_AVAILABLE, reason='OWSLib is unavailable.') @pytest.mark.mpl_image_compare(filename='wms.png', tolerance=0.02) def test_wms():