Skip to content

Commit 06de109

Browse files
authored
Merge pull request #3045 from bsipocz/MAINT_skip_bigdata_in_CI
MAINT: skip bigdata tests in CI
2 parents 441a405 + 75d15f2 commit 06de109

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

astroquery/alma/tests/test_alma_remote.py

+1
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ def test_data_proprietary(self, alma):
165165
with pytest.raises(AttributeError):
166166
alma.is_proprietary('uid://NON/EXI/STING')
167167

168+
@pytest.mark.bigdata
168169
def test_retrieve_data(self, tmp_path, alma):
169170
"""
170171
Regression test for issue 2490 (the retrieval step will simply fail if

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ description = run tests
2222

2323
setenv =
2424
PYTEST_ARGS = ''
25-
online: PYTEST_ARGS = --remote-data=any --reruns=1 --reruns-delay 10
25+
online: PYTEST_ARGS = --remote-data=any --reruns=1 --reruns-delay 10 -m "not bigdata"
2626
devdeps: PIP_EXTRA_INDEX_URL = https://pypi.anaconda.org/scientific-python-nightly-wheels/simple https://pypi.anaconda.org/astropy/simple https://pypi.anaconda.org/liberfa/simple
2727

2828
deps =

0 commit comments

Comments
 (0)