1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Ole Streicher <olebole@debian.org>
Date: Sun, 9 Nov 2025 17:21:07 +0100
Subject: Mark one test as remotedata
This test raised in one case an error when trying to connect to vizir.
Closes: #1119842
---
astroquery/esa/jwst/tests/test_jwsttap.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/astroquery/esa/jwst/tests/test_jwsttap.py b/astroquery/esa/jwst/tests/test_jwsttap.py
index d627c7b..6ca359c 100644
--- a/astroquery/esa/jwst/tests/test_jwsttap.py
+++ b/astroquery/esa/jwst/tests/test_jwsttap.py
@@ -952,6 +952,7 @@ class TestTap:
if f not in files_returned:
raise ValueError(f"Not found expected file: {f}")
+ @pytest.mark.remote_data
def test_query_target_error(self):
# need to patch simbad query object here
with patch("astroquery.simbad.SimbadClass.query_object",
|