Skip to content

Commit

Permalink
GH-36629: [CI][Python] Skip dask tests due to our non-nanosecond chan…
Browse files Browse the repository at this point in the history
…ges 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 <raulcumplido@gmail.com>
Signed-off-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
  • Loading branch information
raulcd committed Jul 13, 2023
1 parent d8a3360 commit 3bdbd0d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/scripts/integration_dask.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3bdbd0d

Please sign in to comment.