Skip to content

Commit 08b1a95

Browse files
committed
explicit data release list
1 parent 96e5ec5 commit 08b1a95

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

astroquery/sdss/tests/test_sdss.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,7 @@ def data_path(filename):
125125
coords_column = Column(coords_list, name='coordinates')
126126

127127
# List of all data releases.
128-
dr_list = list(range(1, sdss.conf.default_release + 3))
129-
128+
dr_list = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16)
130129

131130
# We are not testing queries for DR11 because it is not easily available to
132131
# query: "DR11 data are distributed primarily to provide reproducibility of

astroquery/sdss/tests/test_sdss_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from ... import sdss
1212
from ...exceptions import TimeoutError
1313

14-
dr_list = list(range(8, sdss.conf.default_release + 3))
14+
dr_list = (8, 9, 10, 11, 12, 13, 14, 15, 16)
1515

1616

1717
@pytest.mark.remote_data

0 commit comments

Comments
 (0)