Skip to content

Commit

Permalink
docs: remove doctest ignore on first TAP example
Browse files Browse the repository at this point in the history
  • Loading branch information
ManonMarchand committed Nov 9, 2023
1 parent 7e6281b commit b86d6aa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/simbad/query_tap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ ADQL query.
This ADQL query can be called with `~astroquery.simbad.SimbadClass.query_tap`:

.. a bit long due to the ordering
.. doctest-skip::
.. nbref changes often so we ignore the output here
.. doctest-remote-data::

>>> from astroquery.simbad import Simbad
>>> Simbad.query_tap("""SELECT TOP 5 basic.ra, basic.dec, main_id, nbref
FROM basic JOIN ident ON basic.oid = ident.oidref
WHERE (otype != 'Cl*..') AND (rvz_redshift < 1)
AND (id LIKE 'NGC%')
ORDER BY nbref DESC""")
... FROM basic JOIN ident ON basic.oid = ident.oidref
... WHERE (otype != 'Cl*..') AND (rvz_redshift < 1)
... AND (id LIKE 'NGC%')
... ORDER BY nbref DESC""") # doctest: +IGNORE_OUTPUT
<Table length=5>
ra dec main_id nbref
deg deg
Expand Down

0 comments on commit b86d6aa

Please sign in to comment.