This is an automated email from the ASF dual-hosted git repository. raulcd pushed a commit to branch maint-13.0.0 in repository https://gitbox.apache.org/repos/asf/arrow.git
commit e77e13ae256226b1bdb17462df505f6fd1146b94 Author: Raúl Cumplido <[email protected]> AuthorDate: Thu Jul 13 11:15:43 2023 +0200 GH-36629: [CI][Python] Skip dask tests due to our non-nanosecond changes in arrow->pandas conversion (#36630) ### Rationale for this change Due to the changes on #33321 a dask test started failing. ### What changes are included in this PR? Skip the test in the meantime ### Are these changes tested? Yes, with crossbow ### Are there any user-facing changes? No * Closes: #36629 Authored-by: Raúl Cumplido <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]> --- ci/scripts/integration_dask.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/scripts/integration_dask.sh b/ci/scripts/integration_dask.sh index eeaba715b6..d1e2ecdc84 100755 --- a/ci/scripts/integration_dask.sh +++ b/ci/scripts/integration_dask.sh @@ -33,6 +33,9 @@ python -c "import dask.dataframe" pytest -v --pyargs dask.dataframe.tests.test_dataframe pytest -v --pyargs dask.dataframe.io.tests.test_orc -pytest -v --pyargs dask.dataframe.io.tests.test_parquet +# skip failing parquet tests +# test_pandas_timestamp_overflow_pyarrow is skipped because of GH-33321. +pytest -v --pyargs dask.dataframe.io.tests.test_parquet \ + -k "not test_pandas_timestamp_overflow_pyarrow" # this file contains parquet tests that use S3 filesystem pytest -v --pyargs dask.bytes.tests.test_s3
