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

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


The following commit(s) were added to refs/heads/main by this push:
     new 3bdbd0d34c GH-36629: [CI][Python] Skip dask tests due to our 
non-nanosecond changes in arrow->pandas conversion (#36630)
3bdbd0d34c is described below

commit 3bdbd0d34cdfe6f34e1c2bf80df472faccdff3c0
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

Reply via email to