File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
astroquery/nasa_exoplanet_archive Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -98,16 +98,16 @@ def get_access_url(service='tap'):
98
98
return url
99
99
100
100
101
- @pytest .mark .remote_data
102
- def get_tap_tables (url ):
103
- """Tables accessed by API are gradually migrating to TAP service. Generate current list of tables in TAP."""
104
- tap = pyvo .dal .tap .TAPService (baseurl = url )
105
- response = tap .search (query = "select * from TAP_SCHEMA.tables" , language = "ADQL" )
106
- tables = [table for table in response ["table_name" ].data if "TAP_SCHEMA." not in table ]
107
- return tables
101
+ # @pytest.mark.remote_data
102
+ # def get_tap_tables(url):
103
+ # """Tables accessed by API are gradually migrating to TAP service. Generate current list of tables in TAP."""
104
+ # tap = pyvo.dal.tap.TAPService(baseurl=url)
105
+ # response = tap.search(query="select * from TAP_SCHEMA.tables", language="ADQL")
106
+ # tables = [table for table in response["table_name"].data if "TAP_SCHEMA." not in table]
107
+ # return tables
108
108
109
109
110
- TAP_TABLES = get_tap_tables (conf .url_tap )
110
+ TAP_TABLES = [ 'ps' , 'pscomppars' ] # get_tap_tables(conf.url_tap)
111
111
112
112
113
113
class InvalidTableError (InvalidQueryError ):
You can’t perform that action at this time.
0 commit comments