Skip to content

Commit 8ac20a1

Browse files
authored
Merge pull request #2117 from bsipocz/nasa_ea_revert_doc_testing
TMP: revert remote doctest for nasa_exoplanet_archive
2 parents 0f245db + 5a2e7cd commit 8ac20a1

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

docs/nasa_exoplanet_archive/nasa_exoplanet_archive.rst

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. doctest-skip-all
2+
13
.. _astroquery.nasa_exoplanet_archive:
24

35
************************************************************
@@ -25,7 +27,7 @@ The `~astroquery.nasa_exoplanet_archive.NasaExoplanetArchiveClass.query_object`
2527
For example, the following query searches the ``ps`` table of confirmed exoplanets for information about the planet K2-18 b.
2628

2729
.. code-block:: python
28-
.. doctest-remote-data::
30+
2931
>>> from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
3032
>>> NasaExoplanetArchive.query_object("K2-18 b")
3133
<QTable masked=True length=11>
@@ -49,7 +51,6 @@ For example, the following query searches the ``ps`` table of confirmed exoplane
4951
Similarly, cone searches can be executed using the `~astroquery.nasa_exoplanet_archive.NasaExoplanetArchiveClass.query_region` method:
5052

5153
.. code-block:: python
52-
.. doctest-remote-data::
5354
5455
>>> import astropy.units as u
5556
>>> from astropy.coordinates import SkyCoord
@@ -70,7 +71,6 @@ The most general queries can be performed using the `~astroquery.nasa_exoplanet_
7071
For example, a full table can be queried as follows:
7172

7273
.. code-block:: python
73-
.. doctest-remote-data::
7474
7575
>>> from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
7676
>>> NasaExoplanetArchive.query_criteria(table="cumulative", select="*")
@@ -98,7 +98,6 @@ In this section, we demonstrate
9898
1. The number of confirmed planets discovered by TESS:
9999

100100
.. code-block:: python
101-
.. doctest-remote-data::
102101
103102
>>> from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
104103
>>> NasaExoplanetArchive.query_criteria(table="pscomppars", select="count(*)",
@@ -113,7 +112,6 @@ In this section, we demonstrate
113112
2. The list of confirmed planets discovered by TESS and their host star coordinates:
114113

115114
.. code-block:: python
116-
.. doctest-remote-data::
117115
118116
>>> from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
119117
>>> NasaExoplanetArchive.query_criteria(table="pscomppars", select="pl_name,ra,dec",
@@ -135,7 +133,6 @@ In this section, we demonstrate
135133
3. The list of confirmed planets discovered using microlensing that have data available in the archive:
136134

137135
.. code-block:: python
138-
.. doctest-remote-data::
139136
140137
>>> from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
141138
>>> NasaExoplanetArchive.query_criteria(
@@ -159,7 +156,6 @@ In this section, we demonstrate
159156
4. The list of confirmed planets where the host star name starts with "Kepler" using a *wildcard search*:
160157

161158
.. code-block:: python
162-
.. doctest-remote-data::
163159
164160
>>> from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
165161
>>> NasaExoplanetArchive.query_criteria(
@@ -186,7 +182,6 @@ In this section, we demonstrate
186182
5. The Kepler Objects of Interest that were vetted more recently than January 24, 2015 using a *date search*:
187183

188184
.. code-block:: python
189-
.. doctest-remote-data::
190185
191186
>>> from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
192187
>>> NasaExoplanetArchive.query_criteria(

0 commit comments

Comments
 (0)