- Skip overflowing tests on 32-bit

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=125
This commit is contained in:
Steve Kowalik 2024-08-29 04:05:54 +00:00 committed by Git OBS Bridge
parent 790978b920
commit 75f85e65a8
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Aug 28 13:53:55 UTC 2024 - Ben Greiner <code@bnavigator.de>
- Skip overflowing tests on 32-bit
-------------------------------------------------------------------
Sun Aug 25 21:22:36 UTC 2024 - Ben Greiner <code@bnavigator.de>

View File

@ -532,6 +532,9 @@ SKIP_TESTS+=" or (test_rolling_quantile_interpolation_options and data1 and line
SKIP_TESTS+=" or test_large_string_pyarrow"
SKIP_TESTS+=" or test_pandas_nullable_with_missing_values"
SKIP_TESTS+=" or test_pandas_nullable_without_missing_values"
SKIP_TESTS+=" or (test_to_datetime and TestOrigin and test_epoch)"
SKIP_TESTS+=" or test_td_mul_numeric_ndarray_0d"
SKIP_TESTS+=" or test_get_indexer_non_unique_wrong_dtype"
# pyarrow read-only errors
SKIP_TESTS+=" or test_left_join_multi_index"
SKIP_TESTS+=" or test_join_on_single_col_dup_on_right"