summaryrefslogtreecommitdiff
path: root/dev-python/pandas/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-08-25 07:36:27 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-08-25 07:36:27 +0100
commit43793fab84041cfc5c60c0151d1591b8a69fb24a (patch)
tree6208a7f4fc744684fce0f55acbb47511acace498 /dev-python/pandas/files
parent28e3d252dc8ac8a5635206dfefe1cfe05058d1db (diff)
gentoo resync : 25.08.2018
Diffstat (limited to 'dev-python/pandas/files')
-rw-r--r--dev-python/pandas/files/pandas-0.23.4-skip-broken-test.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/pandas/files/pandas-0.23.4-skip-broken-test.patch b/dev-python/pandas/files/pandas-0.23.4-skip-broken-test.patch
new file mode 100644
index 000000000000..aa98b80c2c70
--- /dev/null
+++ b/dev-python/pandas/files/pandas-0.23.4-skip-broken-test.patch
@@ -0,0 +1,24 @@
+diff --git a/pandas/tests/io/formats/test_format.py b/pandas/tests/io/formats/test_format.py
+index 191e3f37f..8a1d89197 100644
+--- a/pandas/tests/io/formats/test_format.py
++++ b/pandas/tests/io/formats/test_format.py
+@@ -1585,6 +1585,7 @@ c 10 11 12 13 14\
+ with option_context('display.max_rows', 60, 'display.max_columns', 20):
+ assert '...' in df._repr_html_()
+
++ @pytest.mark.skip("Fails in Gentoo")
+ def test_info_repr(self):
+ max_rows = 60
+ max_cols = 20
+diff --git a/pandas/tests/io/json/test_ujson.py b/pandas/tests/io/json/test_ujson.py
+index 89acbfdc9..9c4b5c291 100644
+--- a/pandas/tests/io/json/test_ujson.py
++++ b/pandas/tests/io/json/test_ujson.py
+@@ -1097,6 +1097,7 @@ class TestNumpyJSONTests(object):
+ outp = ujson.decode(ujson.encode(arr), numpy=True, dtype=np.float32)
+ tm.assert_almost_equal(arr, outp)
+
++ @pytest.mark.skip("Fails on Gentoo")
+ def test_OdArray(self):
+ def will_raise():
+ ujson.encode(np.array(1))