summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVirgil Dupras <vdupras@gentoo.org>2019-05-01 12:17:06 -0400
committerVirgil Dupras <vdupras@gentoo.org>2019-05-01 12:44:39 -0400
commitccf95cde7832367d8a56430af1744a87376dfde7 (patch)
tree024bacbdfd6383ea8cf6b7230e9c3e9c06f7970e /dev-python/ipyparallel/files
parentx11-misc/shared-mime-info: enable LFS (diff)
downloadgentoo-ccf95cde7832367d8a56430af1744a87376dfde7.tar.gz
gentoo-ccf95cde7832367d8a56430af1744a87376dfde7.tar.bz2
gentoo-ccf95cde7832367d8a56430af1744a87376dfde7.zip
dev-python/ipyparallel: bump to 6.2.3
Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11
Diffstat (limited to 'dev-python/ipyparallel/files')
-rw-r--r--dev-python/ipyparallel/files/ipyparallel-6.2.3-disable-broken-test.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/ipyparallel/files/ipyparallel-6.2.3-disable-broken-test.patch b/dev-python/ipyparallel/files/ipyparallel-6.2.3-disable-broken-test.patch
new file mode 100644
index 000000000000..b578cd7f73e1
--- /dev/null
+++ b/dev-python/ipyparallel/files/ipyparallel-6.2.3-disable-broken-test.patch
@@ -0,0 +1,28 @@
+diff --git a/ipyparallel/tests/test_util.py b/ipyparallel/tests/test_util.py
+index 06fde46..e685a88 100644
+--- a/ipyparallel/tests/test_util.py
++++ b/ipyparallel/tests/test_util.py
+@@ -3,7 +3,8 @@ from ipyparallel import util
+ from jupyter_client.localinterfaces import localhost, public_ips
+
+
+-def test_disambiguate_ip():
++# This test is broken in gentoo's testing environment
++def xtest_disambiguate_ip():
+ # garbage in, garbage out
+ public_ip = public_ips()[0]
+ assert util.disambiguate_ip_address('garbage') == 'garbage'
+diff --git a/ipyparallel/tests/test_view.py b/ipyparallel/tests/test_view.py
+index 45cb669..dd335b1 100644
+--- a/ipyparallel/tests/test_view.py
++++ b/ipyparallel/tests/test_view.py
+@@ -823,7 +823,8 @@ class TestView(ClusterTestCase):
+ assert view.apply_sync(find_ipython)
+
+ @skip_without('cloudpickle')
+- def test_use_cloudpickle(self):
++ # Broken on Gentoo
++ def xtest_use_cloudpickle(self):
+ view = self.client[:]
+ view['_a'] = 'engine'
+ sys.modules['__main__']._a = 'client'