jorisvandenbossche opened a new issue, #38243:
URL: https://github.com/apache/arrow/issues/38243

   The minimal build nightly builds are failing in the python tests because of 
a missing dataset marker for a test that was added in the Dataset Parquet 
Encryption PR:
   
   
   ```
   ________________ test_write_dataset_parquet_without_encryption 
_________________
   
       @pytest.mark.skipif(
           not encryption_unavailable, reason="Parquet Encryption is currently 
enabled"
       )
       def test_write_dataset_parquet_without_encryption():
           """Test write_dataset with ParquetFileFormat and test if an 
exception is thrown
           if you try to set encryption_config using make_write_options"""
       
           # Set the encryption configuration using ParquetFileFormat
           # and make_write_options
   >       pformat = pa.dataset.ParquetFileFormat()
   
   pyarrow/tests/test_dataset_encryption.py:145: 
   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
_ _ 
   
   name = 'dataset'
   
       def __getattr__(name):
           if name in _deprecated:
               obj, new_name = _deprecated[name]
               _warnings.warn(_msg.format(name, new_name),
                              FutureWarning, stacklevel=2)
               return obj
       
   >       raise AttributeError(
               "module 'pyarrow' has no attribute '{0}'".format(name)
           )
   E       AttributeError: module 'pyarrow' has no attribute 'dataset'
   
   pyarrow/__init__.py:317: AttributeError
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to