@@ -407,6 +407,7 @@ Queries retrieved results can be stored locally in memory (by default) or in a f
407407Query without saving results in a file:
408408
409409.. doctest-remote-data ::
410+
410411 >>> from astroquery.gaia import Gaia
411412 >>> job = Gaia.launch_job_async(" select top 100 designation,ra,dec "
412413 ... " from gaiadr3.gaia_source order by source_id" )
@@ -423,10 +424,11 @@ Query without saving results in a file:
423424 ...
424425 Length = 100 rows
425426
427+
426428Query saving results in a file (you may use 'output_format' to specified the results data format,
427429available formats are: 'votable', 'votable_plain', 'fits', 'csv' and 'json', default is 'votable'):
428430
429- .. doctest-skip-all ::
431+ .. doctest-skip ::
430432
431433 >>> from astroquery.gaia import Gaia
432434 >>> job = Gaia.launch_job_async(" select top 100 ra, dec "
@@ -442,7 +444,9 @@ available formats are: 'votable', 'votable_plain', 'fits', 'csv' and 'json', def
4424441.7. Asynchronous job removal
443445^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
444446
445- To remove asynchronous jobs::
447+ To remove asynchronous jobs:
448+
449+ .. doctest-skip ::
446450
447451 >>> from astroquery.gaia import Gaia
448452 >>> Gaia.remove_jobs([" job_id_1" ," job_id_2" ,... ])
@@ -451,6 +455,9 @@ To remove asynchronous jobs::
4514552. Authenticated access
452456-----------------------
453457
458+ .. From here on all the examples require authentication, therefore we skip doctesting them
459+ .. doctest-skip-all ::
460+
454461Authenticated users are able to access to TAP+ capabilities (shared tables, persistent jobs, etc.)
455462In order to authenticate a user, ``login `` or ``login_gui `` methods must be called. After a
456463successful login, the user will be authenticated until ``logout `` method is called.
0 commit comments