From 4d94d182399fd0076005a4e4a0c1272c3031cffb Mon Sep 17 00:00:00 2001 From: thodson-usgs Date: Mon, 4 May 2026 12:42:15 -0500 Subject: [PATCH] Skip NADP live-API tests (module deprecated) The NADP module is deprecated and scheduled for removal on 2026-11-01 (see #243). Both tests in this file hit the live NADP services and have been intermittently exhausting CI retries. Skip them via `pytestmark` rather than deleting, so the test bodies remain available if needed during the deprecation window. Co-Authored-By: Claude Opus 4.7 (1M context) --- tests/nadp_test.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/nadp_test.py b/tests/nadp_test.py index 94e364f0..eb5e8423 100644 --- a/tests/nadp_test.py +++ b/tests/nadp_test.py @@ -2,8 +2,15 @@ import os +import pytest + from dataretrieval import nadp +pytestmark = pytest.mark.skip( + reason="NADP module deprecated; removal scheduled 2026-11-01. " + "Tests hit live NADP services and were causing CI flakes." +) + class TestMDNmap: """Testing the mercury deposition network map functions.