You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by yi...@apache.org on 2022/02/18 02:51:55 UTC

[arrow] branch master updated: ARROW-15720: [CI] Fix nightly dask build (skip failing test due to wrong usage of Array.to_pandas)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new dea502d  ARROW-15720: [CI] Fix nightly dask build (skip failing test due to wrong usage of Array.to_pandas)
dea502d is described below

commit dea502da05363666464e5d441cc7b5428fd964c8
Author: Joris Van den Bossche <jo...@gmail.com>
AuthorDate: Fri Feb 18 10:49:16 2022 +0800

    ARROW-15720: [CI] Fix nightly dask build (skip failing test due to wrong usage of Array.to_pandas)
    
    Closes #12455 from jorisvandenbossche/dask-failure
    
    Authored-by: Joris Van den Bossche <jo...@gmail.com>
    Signed-off-by: Yibo Cai <yi...@arm.com>
---
 ci/scripts/integration_dask.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ci/scripts/integration_dask.sh b/ci/scripts/integration_dask.sh
index e67a029..e755839 100755
--- a/ci/scripts/integration_dask.sh
+++ b/ci/scripts/integration_dask.sh
@@ -36,5 +36,6 @@ python -c "import dask.dataframe"
 pytest -v --pyargs dask.dataframe.tests.test_dataframe -k "not test_dataframe_picklable and not test_describe_empty"
 pytest -v --pyargs dask.dataframe.io.tests.test_orc
 # skip failing parquet tests, see https://github.com/dask/dask/issues/6243
+# test_pandas_timestamp_overflow_pyarrow is skipped because of ARROW-15720 - can be removed once 2022.02.1 is out
 pytest -v --pyargs dask.dataframe.io.tests.test_parquet \
-  -k "not test_to_parquet_pyarrow_w_inconsistent_schema_by_partition_fails_by_default and not test_timeseries_nulls_in_schema"
+  -k "not test_to_parquet_pyarrow_w_inconsistent_schema_by_partition_fails_by_default and not test_timeseries_nulls_in_schema and not test_pandas_timestamp_overflow_pyarrow"