Skip to content

Commit e77e13a

Browse files
committed
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]>
1 parent f5a4f12 commit e77e13a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/scripts/integration_dask.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ python -c "import dask.dataframe"
3333

3434
pytest -v --pyargs dask.dataframe.tests.test_dataframe
3535
pytest -v --pyargs dask.dataframe.io.tests.test_orc
36-
pytest -v --pyargs dask.dataframe.io.tests.test_parquet
36+
# skip failing parquet tests
37+
# test_pandas_timestamp_overflow_pyarrow is skipped because of GH-33321.
38+
pytest -v --pyargs dask.dataframe.io.tests.test_parquet \
39+
-k "not test_pandas_timestamp_overflow_pyarrow"
3740
# this file contains parquet tests that use S3 filesystem
3841
pytest -v --pyargs dask.bytes.tests.test_s3

0 commit comments

Comments
 (0)