raulcd opened a new pull request, #13147: URL: https://github.com/apache/arrow/pull/13147
If we built arrow and pyarrow without PARQUET and tried to run the PARQUET tests. The first test being executed was not correctly marked. ``` > /home/raulcd/open_source/arrow/python/pyarrow/tests/conftest.py(244)pytest_runtest_setup() -> for mark in item.iter_markers(): (Pdb) item <Function test_parquet_invalid_version> (Pdb) [x for x in item.iter_markers()] [] (Pdb) ``` Meaning the test was not correctly skipped. This was found on the minimal builds PR: https://github.com/apache/arrow/pull/13113 on this job failures: https://github.com/ursacomputing/crossbow/runs/6407176338?check_suite_focus=true All tests under the parquet package are on the structure: - parquet ├── test_basic.py ├── test_compliant_nested_type.py ├── test_dataset.py ├── test_data_types.py ├── test_datetime.py ├── test_encryption.py ├── test_metadata.py ├── test_pandas.py ├── test_parquet_file.py └── test_parquet_writer.py The implementation marks all the individual tests that are on this structure with the parquet dataset mark correctly. -- 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]
