python-dask/0003-XFail-partitioning-tes...

32 lines
1.1 KiB
Diff
Raw Normal View History

2019-03-07 00:58:51 +00:00
From cea02b7cd2f9e61ed9f0b5f391438e31f567efe5 Mon Sep 17 00:00:00 2001
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date: Sun, 3 Mar 2019 05:24:13 -0500
Subject: [PATCH 3/3] XFail partitioning test on some arches.
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
---
dask/dataframe/tests/test_dataframe.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/dask/dataframe/tests/test_dataframe.py b/dask/dataframe/tests/test_dataframe.py
index 0b4c7e76..6718f05c 100644
--- a/dask/dataframe/tests/test_dataframe.py
+++ b/dask/dataframe/tests/test_dataframe.py
@@ -1,3 +1,4 @@
+import platform
import sys
import textwrap
from distutils.version import LooseVersion
@@ -1340,6 +1341,8 @@ def test_repartition_on_pandas_dataframe():
assert_eq(ddf, df.y)
+@pytest.mark.xfail(platform.machine() in ('ppc64le', 'aarch64', 's390x'),
+ 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