From 373dd6f27d044da6c3ad657fa2d837be74377f94 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sun, 3 Mar 2019 05:24:13 -0500 Subject: [PATCH] XFail partitioning test on some arches. Signed-off-by: Elliott Sales de Andrade --- dask/dataframe/tests/test_dataframe.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dask/dataframe/tests/test_dataframe.py b/dask/dataframe/tests/test_dataframe.py index 46f8a377..a7d58fbe 100644 --- a/dask/dataframe/tests/test_dataframe.py +++ b/dask/dataframe/tests/test_dataframe.py @@ -1,3 +1,4 @@ +import platform import textwrap import warnings from itertools import product @@ -1452,6 +1453,9 @@ def test_repartition_on_pandas_dataframe(): assert_eq(ddf, df.y) +@pytest.mark.xfail(platform.machine() in ('ppc64', 'ppc64le', 'aarch64', 's390x', + 'i686', 'i586', 'i386'), + reason='Unsupported architecture') @pytest.mark.parametrize('use_index', [True, False]) @pytest.mark.parametrize('n', [1, 2, 4, 5]) @pytest.mark.parametrize('k', [1, 2, 4, 5]) -- 2.20.1