summaryrefslogtreecommitdiff
path: root/dev-python/dask/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/dask/files
parent28e3d252dc8ac8a5635206dfefe1cfe05058d1db (diff)
gentoo resync : 25.08.2018
Diffstat (limited to 'dev-python/dask/files')
-rw-r--r--dev-python/dask/files/dask-0.18.2-skip-broken-test.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-python/dask/files/dask-0.18.2-skip-broken-test.patch b/dev-python/dask/files/dask-0.18.2-skip-broken-test.patch
new file mode 100644
index 000000000000..f761194c54fb
--- /dev/null
+++ b/dev-python/dask/files/dask-0.18.2-skip-broken-test.patch
@@ -0,0 +1,36 @@
+diff --git a/dask/bytes/tests/test_local.py b/dask/bytes/tests/test_local.py
+index dbe58ae0..072a1ee7 100644
+--- a/dask/bytes/tests/test_local.py
++++ b/dask/bytes/tests/test_local.py
+@@ -141,6 +141,7 @@ def test_with_urls():
+ assert sum(map(len, values)) == len(files)
+
+
++@pytest.mark.skip("Fails on Gentoo")
+ @pytest.mark.skipif(sys.platform == 'win32',
+ reason="pathlib and moto clash on windows")
+ def test_with_paths():
+diff --git a/dask/dataframe/tests/test_dataframe.py b/dask/dataframe/tests/test_dataframe.py
+index f5a080d4..de9c0a90 100644
+--- a/dask/dataframe/tests/test_dataframe.py
++++ b/dask/dataframe/tests/test_dataframe.py
+@@ -2388,6 +2388,7 @@ def _assert_info(df, ddf, memory_usage=True):
+ assert stdout_pd == stdout_da
+
+
++@pytest.mark.skip("Fails on Gentoo")
+ def test_info():
+ from io import StringIO
+ from dask.compatibility import unicode
+diff --git a/dask/tests/test_base.py b/dask/tests/test_base.py
+index 8e5b0118..1cf56e31 100644
+--- a/dask/tests/test_base.py
++++ b/dask/tests/test_base.py
+@@ -595,6 +595,7 @@ def test_visualize():
+ assert os.path.exists(os.path.join(d, 'mydask.png'))
+
+
++@pytest.mark.skip("Fails on Gentoo")
+ @pytest.mark.skipif('not da')
+ @pytest.mark.skipif(sys.flags.optimize,
+ reason="graphviz exception with Python -OO flag")