From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ED410158094 for ; Tue, 28 Jun 2022 09:32:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73B47E0ACE; Tue, 28 Jun 2022 09:32:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 50954E0AFB for ; Tue, 28 Jun 2022 09:32:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2983E3416D2 for ; Tue, 28 Jun 2022 09:31:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D74951B for ; Tue, 28 Jun 2022 09:31:57 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1656408608.c31e15861d20358500ad591cf46999c4424ac13a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipyparallel/, dev-python/ipyparallel/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ipyparallel/files/ipyparallel-8.3.0-additional-test-timeouts.patch dev-python/ipyparallel/ipyparallel-8.3.0.ebuild dev-python/ipyparallel/ipyparallel-8.4.0.ebuild dev-python/ipyparallel/ipyparallel-8.4.1.ebuild X-VCS-Directories: dev-python/ipyparallel/files/ dev-python/ipyparallel/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c31e15861d20358500ad591cf46999c4424ac13a X-VCS-Branch: master Date: Tue, 28 Jun 2022 09:31:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9b1ebc9a-de42-46d1-aaf9-c6cd74699b5a X-Archives-Hash: d6fda95b0599a7087fe7c7e7809ce689 commit: c31e15861d20358500ad591cf46999c4424ac13a Author: matoro users noreply github com> AuthorDate: Sun Jun 26 23:31:53 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jun 28 09:30:08 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c31e1586 dev-python/ipyparallel: increase timeouts for new tests in 8.3.0 Bug: https://bugs.gentoo.org/834198 Signed-off-by: matoro users.noreply.github.com> Closes: https://github.com/gentoo/gentoo/pull/26088 Signed-off-by: Sam James gentoo.org> ...pyparallel-8.3.0-additional-test-timeouts.patch | 46 ++++++++++++++++++++++ dev-python/ipyparallel/ipyparallel-8.3.0.ebuild | 1 + dev-python/ipyparallel/ipyparallel-8.4.0.ebuild | 1 + dev-python/ipyparallel/ipyparallel-8.4.1.ebuild | 1 + 4 files changed, 49 insertions(+) diff --git a/dev-python/ipyparallel/files/ipyparallel-8.3.0-additional-test-timeouts.patch b/dev-python/ipyparallel/files/ipyparallel-8.3.0-additional-test-timeouts.patch new file mode 100644 index 000000000000..22b2910d4d10 --- /dev/null +++ b/dev-python/ipyparallel/files/ipyparallel-8.3.0-additional-test-timeouts.patch @@ -0,0 +1,46 @@ +https://bugs.gentoo.org/834198 + +diff --git a/ipyparallel/tests/test_view.py b/ipyparallel/tests/test_view.py +index 5b5ca41..4c04d02 100644 +--- a/ipyparallel/tests/test_view.py ++++ b/ipyparallel/tests/test_view.py +@@ -628,7 +628,7 @@ class TestView(ClusterTestCase): + """exceptions in execute requests raise appropriately""" + view = self.client[-1] + ar = view.execute("1/0") +- self.assertRaisesRemote(ZeroDivisionError, ar.get, 2) ++ self.assertRaisesRemote(ZeroDivisionError, ar.get, 20) + + def test_remoteerror_render_exception(self): + """RemoteErrors get nice tracebacks""" +@@ -637,7 +637,7 @@ class TestView(ClusterTestCase): + ip = get_ipython() + ip.user_ns['ar'] = ar + with capture_output() as io: +- ip.run_cell("ar.get(2)") ++ ip.run_cell("ar.get(20)") + + self.assertTrue('ZeroDivisionError' in io.stdout, io.stdout) + +@@ -649,7 +649,7 @@ class TestView(ClusterTestCase): + ip.user_ns['ar'] = ar + + with capture_output() as io: +- ip.run_cell("ar.get(2)") ++ ip.run_cell("ar.get(20)") + + count = min(error.CompositeError.tb_limit, len(view)) + +@@ -689,10 +689,10 @@ class TestView(ClusterTestCase): + view = self.client[-1] + ar = view.execute("%pylab inline") + # at least check if this raised: +- reply = ar.get(5) ++ reply = ar.get(50) + # include imports, in case user config + ar = view.execute("plot(rand(100))", silent=False) +- reply = ar.get(5) ++ reply = ar.get(50) + assert ar.wait_for_output(5) + self.assertEqual(len(reply.outputs), 1) + output = reply.outputs[0] diff --git a/dev-python/ipyparallel/ipyparallel-8.3.0.ebuild b/dev-python/ipyparallel/ipyparallel-8.3.0.ebuild index 0b986b8cdac3..1128874fd260 100644 --- a/dev-python/ipyparallel/ipyparallel-8.3.0.ebuild +++ b/dev-python/ipyparallel/ipyparallel-8.3.0.ebuild @@ -48,6 +48,7 @@ distutils_enable_tests pytest PATCHES=( "${FILESDIR}"/${PN}-7.1.0-test-timeouts.patch + "${FILESDIR}"/${PN}-8.3.0-additional-test-timeouts.patch ) src_configure() { diff --git a/dev-python/ipyparallel/ipyparallel-8.4.0.ebuild b/dev-python/ipyparallel/ipyparallel-8.4.0.ebuild index 1a3d355d160d..238bb4888e55 100644 --- a/dev-python/ipyparallel/ipyparallel-8.4.0.ebuild +++ b/dev-python/ipyparallel/ipyparallel-8.4.0.ebuild @@ -52,6 +52,7 @@ distutils_enable_tests pytest PATCHES=( "${FILESDIR}"/${PN}-7.1.0-test-timeouts.patch + "${FILESDIR}"/${PN}-8.3.0-additional-test-timeouts.patch ) src_configure() { diff --git a/dev-python/ipyparallel/ipyparallel-8.4.1.ebuild b/dev-python/ipyparallel/ipyparallel-8.4.1.ebuild index 1a3d355d160d..238bb4888e55 100644 --- a/dev-python/ipyparallel/ipyparallel-8.4.1.ebuild +++ b/dev-python/ipyparallel/ipyparallel-8.4.1.ebuild @@ -52,6 +52,7 @@ distutils_enable_tests pytest PATCHES=( "${FILESDIR}"/${PN}-7.1.0-test-timeouts.patch + "${FILESDIR}"/${PN}-8.3.0-additional-test-timeouts.patch ) src_configure() {