You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by jo...@apache.org on 2020/12/21 14:34:43 UTC

[arrow] branch master updated (f52a100 -> c751295)

This is an automated email from the ASF dual-hosted git repository.

jorisvandenbossche pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    from f52a100  ARROW-10938: [Rust] upgrade dependency "flatbuffers" to 0.8
     add c751295  ARROW-9027: [Python][Testing] Split parquet tests into multiple files + clean-up

No new revisions were added by this update.

Summary of changes:
 python/pyarrow/tests/conftest.py                   |    2 +-
 python/pyarrow/tests/parquet/common.py             |  177 +
 python/pyarrow/tests/parquet/conftest.py           |   87 +
 python/pyarrow/tests/parquet/test_basic.py         |  572 +++
 python/pyarrow/tests/parquet/test_data_types.py    |  505 +++
 python/pyarrow/tests/parquet/test_dataset.py       | 1536 +++++++
 python/pyarrow/tests/parquet/test_datetime.py      |  362 ++
 python/pyarrow/tests/parquet/test_metadata.py      |  477 +++
 python/pyarrow/tests/parquet/test_pandas.py        |  670 +++
 python/pyarrow/tests/parquet/test_parquet_file.py  |  188 +
 .../pyarrow/tests/parquet/test_parquet_writer.py   |  275 ++
 python/pyarrow/tests/test_hdfs.py                  |   22 +-
 python/pyarrow/tests/test_orc.py                   |    4 +-
 python/pyarrow/tests/test_parquet.py               | 4528 --------------------
 14 files changed, 4864 insertions(+), 4541 deletions(-)
 create mode 100644 python/pyarrow/tests/parquet/common.py
 create mode 100644 python/pyarrow/tests/parquet/conftest.py
 create mode 100644 python/pyarrow/tests/parquet/test_basic.py
 create mode 100644 python/pyarrow/tests/parquet/test_data_types.py
 create mode 100644 python/pyarrow/tests/parquet/test_dataset.py
 create mode 100644 python/pyarrow/tests/parquet/test_datetime.py
 create mode 100644 python/pyarrow/tests/parquet/test_metadata.py
 create mode 100644 python/pyarrow/tests/parquet/test_pandas.py
 create mode 100644 python/pyarrow/tests/parquet/test_parquet_file.py
 create mode 100644 python/pyarrow/tests/parquet/test_parquet_writer.py
 delete mode 100644 python/pyarrow/tests/test_parquet.py