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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A98B6158042 for ; Wed, 8 Sep 2021 17:27:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD968E091D; Wed, 8 Sep 2021 17:27:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EE6F4E0916 for ; Wed, 8 Sep 2021 17:27:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BEDEA342ACF for ; Wed, 8 Sep 2021 17:27:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BF18BE for ; Wed, 8 Sep 2021 17:27:41 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1631122012.5c439604f2e9327d701e0448ede782343cbe0559.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipykernel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ipykernel/ipykernel-5.5.4-r1.ebuild dev-python/ipykernel/ipykernel-6.2.0.ebuild X-VCS-Directories: dev-python/ipykernel/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5c439604f2e9327d701e0448ede782343cbe0559 X-VCS-Branch: master Date: Wed, 8 Sep 2021 17:27:41 +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: ac1dab48-04ad-409a-b759-f6c5cb8c2bda X-Archives-Hash: a1f17c4b02f7824600262a07dde94ce2 commit: 5c439604f2e9327d701e0448ede782343cbe0559 Author: Michał Górny gentoo org> AuthorDate: Wed Sep 8 15:22:13 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Sep 8 17:26:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c439604 dev-python/ipykernel: Increase timeouts in tests Signed-off-by: Michał Górny gentoo.org> dev-python/ipykernel/ipykernel-5.5.4-r1.ebuild | 5 +++++ dev-python/ipykernel/ipykernel-6.2.0.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/dev-python/ipykernel/ipykernel-5.5.4-r1.ebuild b/dev-python/ipykernel/ipykernel-5.5.4-r1.ebuild index b5ee0ac3d57..a350b3a0881 100644 --- a/dev-python/ipykernel/ipykernel-5.5.4-r1.ebuild +++ b/dev-python/ipykernel/ipykernel-5.5.4-r1.ebuild @@ -31,6 +31,11 @@ BDEPEND=" distutils_enable_tests pytest +src_prepare() { + sed -i -e 's:^TIMEOUT = .*:TIMEOUT = 120:' ipykernel/tests/*.py || die + distutils-r1_src_prepare +} + python_test() { local deselect=( # TODO diff --git a/dev-python/ipykernel/ipykernel-6.2.0.ebuild b/dev-python/ipykernel/ipykernel-6.2.0.ebuild index 657ad55da61..ce2ed8ddd7e 100644 --- a/dev-python/ipykernel/ipykernel-6.2.0.ebuild +++ b/dev-python/ipykernel/ipykernel-6.2.0.ebuild @@ -37,3 +37,8 @@ BDEPEND=" )" distutils_enable_tests pytest + +src_prepare() { + sed -i -e 's:^TIMEOUT = .*:TIMEOUT = 120:' ipykernel/tests/*.py || die + distutils-r1_src_prepare +}