summaryrefslogtreecommitdiff
path: root/dev-python/dask/files
diff options
context:
space:
mode:
authorPalica <palica+gitlab@liguros.net>2020-06-23 22:35:08 +0200
committerPalica <palica+gitlab@liguros.net>2020-06-23 22:35:08 +0200
commitecdac123787b96ce6649f0f91da12ea6458cc2b1 (patch)
treeb89c74d9e6fe6e8aebc4c77bcbeb4ab73214127d /dev-python/dask/files
parent1be72aa41cf41dedadeecf59dca9f01de6381f5e (diff)
downloadbaldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.gz
baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.xz
baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.zip
Updating liguros repo
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")