We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c93dd24 commit 2bdb5e7Copy full SHA for 2bdb5e7
astroquery/alma/tests/test_alma_remote.py
@@ -149,7 +149,17 @@ def test_data_proprietary(self, alma):
149
with pytest.raises(AttributeError):
150
alma.is_proprietary('uid://NON/EXI/STING')
151
152
- @pytest.mark.xfail(reason="Depends on PR 2438 (https://github.com/astropy/astroquery/pull/2438)")
+ def test_retrieve_data(self, temp_dir, alma):
153
+ """
154
+ Regression test for issue 2490 (the retrieval step will simply fail if
155
+ given a blank line, so all we're doing is testing that it runs)
156
157
+ alma.cache_location = temp_dir
158
+
159
+ uid = 'uid://A001/X12a3/Xe9'
160
161
+ alma.retrieve_data_from_uid([uid])
162
163
def test_data_info(self, temp_dir, alma):
164
alma.cache_location = temp_dir
165
0 commit comments