Skip to content

Commit 5363b69

Browse files
committed
Add skip to the imports also
1 parent 8b0d79f commit 5363b69

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/source/python/parquet.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ individual table writes are wrapped using ``with`` statements so the
499499
.. code-block:: python
500500
501501
>>> # Remote file-system example
502-
>>> from pyarrow.fs import HadoopFileSystem
502+
>>> from pyarrow.fs import HadoopFileSystem # doctest: +SKIP
503503
>>> fs = HadoopFileSystem(host, port, user=user, kerb_ticket=ticket_cache_path) # doctest: +SKIP
504504
>>> pq.write_to_dataset(table, root_path='dataset_name', # doctest: +SKIP
505505
... partition_cols=['one', 'two'], filesystem=fs)
@@ -686,7 +686,7 @@ filesystems, through the ``filesystem`` keyword:
686686
687687
>>> from pyarrow import fs
688688
689-
>>> s3 = fs.S3FileSystem(region="us-east-2")
689+
>>> s3 = fs.S3FileSystem(region="us-east-2") # doctest: +SKIP
690690
>>> table = pq.read_table("bucket/object/key/prefix", filesystem=s3) # doctest: +SKIP
691691
692692
Currently, :class:`HDFS <pyarrow.fs.HadoopFileSystem>` and

0 commit comments

Comments
 (0)