diff --git a/ci/test_wheel_cudf_polars.sh b/ci/test_wheel_cudf_polars.sh index efac494348ee..e59334ebd167 100755 --- a/ci/test_wheel_cudf_polars.sh +++ b/ci/test_wheel_cudf_polars.sh @@ -71,7 +71,7 @@ for version in "${VERSIONS[@]}"; do COVERAGE_ARGS=(--no-cov) fi - timeout 25m ./ci/run_cudf_polars_pytests.sh \ + timeout 35m ./ci/run_cudf_polars_pytests.sh \ "${COVERAGE_ARGS[@]}" \ --numprocesses=8 \ --dist=worksteal \ diff --git a/python/cudf_polars/tests/streaming/test_scan.py b/python/cudf_polars/tests/streaming/test_scan.py index 063ae53ad257..d034cd65f448 100644 --- a/python/cudf_polars/tests/streaming/test_scan.py +++ b/python/cudf_polars/tests/streaming/test_scan.py @@ -35,6 +35,7 @@ def df(): ("parquet", pl.scan_parquet), ], ) +@pytest.mark.timeout(90) def test_parallel_scan(tmp_path, df, fmt, scan_fn, streaming_engine): make_partitioned_source(df, tmp_path, fmt, n_files=3) q = scan_fn(tmp_path)