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

33 lines
1.1 KiB
Diff
Raw Normal View History

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