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

33 lines
1.1 KiB
Diff
Raw Normal View History

2019-04-29 21:27:16 +00:00
From 373dd6f27d044da6c3ad657fa2d837be74377f94 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:30:56 +00:00
Subject: [PATCH] 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-04-29 21:27:16 +00:00
index 46f8a377..a7d58fbe 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
2019-04-29 21:27:16 +00:00
import warnings
2019-03-10 01:01:50 +00:00
from itertools import product
2019-04-29 21:27:16 +00:00
@@ -1452,6 +1453,9 @@ def test_repartition_on_pandas_dataframe():
2019-03-07 00:58:51 +00:00
assert_eq(ddf, df.y)
2019-04-01 07:43:37 +00:00
+@pytest.mark.xfail(platform.machine() in ('ppc64', '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