1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Vincent Prat <vinceprat@free.fr>
Date: Mon, 24 Jun 2024 16:06:38 +0200
Subject: Removes a test failed due to a removed non-DFSG FITS file
---
astroquery/nvas/tests/test_nvas.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/astroquery/nvas/tests/test_nvas.py b/astroquery/nvas/tests/test_nvas.py
index d68530b..2d44168 100644
--- a/astroquery/nvas/tests/test_nvas.py
+++ b/astroquery/nvas/tests/test_nvas.py
@@ -108,6 +108,7 @@ def test_get_images_async(patch_post, patch_parse_coordinates):
assert len(image_list) == 2
+@pytest.mark.skip(reason="Test depends on a removed non-DFSG FITS file")
def test_get_images(patch_post, patch_parse_coordinates,
patch_get_readable_fileobj):
with pytest.warns(VerifyWarning, match="Invalid 'BLANK' keyword in header"):
|