Add ppc64 to skipped arches.

This commit is contained in:
Elliott Sales de Andrade 2019-04-01 03:43:37 -04:00
parent 361d6f00c6
commit ff7197d783
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
From 85093cbcb4353e02c0cf55f82eb3fda95dc97bf2 Mon Sep 17 00:00:00 2001
From e345f8ccac67954c7b95be2be8f4f794135144f3 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] XFail partitioning test on some arches.
@ -9,7 +9,7 @@ Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
1 file changed, 4 insertions(+)
diff --git a/dask/dataframe/tests/test_dataframe.py b/dask/dataframe/tests/test_dataframe.py
index 7ddd900f..b6aa9c52 100644
index 7ddd900f..7c16c770 100644
--- a/dask/dataframe/tests/test_dataframe.py
+++ b/dask/dataframe/tests/test_dataframe.py
@@ -1,3 +1,4 @@
@ -21,7 +21,7 @@ index 7ddd900f..b6aa9c52 100644
assert_eq(ddf, df.y)
+@pytest.mark.xfail(platform.machine() in ('ppc64le', 'aarch64', 's390x',
+@pytest.mark.xfail(platform.machine() in ('ppc64', 'ppc64le', 'aarch64', 's390x',
+ 'i686', 'i586', 'i386'),
+ reason='Unsupported architecture')
@pytest.mark.parametrize('use_index', [True, False])