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 B7DE2138350 for ; Sat, 11 Apr 2020 15:35:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07AEBE0965; Sat, 11 Apr 2020 15:35:58 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E6370E0965 for ; Sat, 11 Apr 2020 15:35:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D63A034EEC2 for ; Sat, 11 Apr 2020 15:35:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1911158 for ; Sat, 11 Apr 2020 15:35:54 +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: <1586619348.6adfcf7397f570e3fe2ad3dd7df4686def70540a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/tornado/tornado-5.1-r1.ebuild www-servers/tornado/tornado-6.0.3-r1.ebuild X-VCS-Directories: www-servers/tornado/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6adfcf7397f570e3fe2ad3dd7df4686def70540a X-VCS-Branch: master Date: Sat, 11 Apr 2020 15:35:54 +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: 4253e0dc-55d6-497a-bfa7-3227f4963e61 X-Archives-Hash: 7cd0d38543643201336cd24f7e941919 commit: 6adfcf7397f570e3fe2ad3dd7df4686def70540a Author: Michał Górny gentoo org> AuthorDate: Sat Apr 11 15:35:21 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Apr 11 15:35:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6adfcf73 www-servers/tornado: Increase timeout for async tests Bug: https://bugs.gentoo.org/663490 Signed-off-by: Michał Górny gentoo.org> www-servers/tornado/tornado-5.1-r1.ebuild | 4 +++- www-servers/tornado/tornado-6.0.3-r1.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/www-servers/tornado/tornado-5.1-r1.ebuild b/www-servers/tornado/tornado-5.1-r1.ebuild index 740e1d0ee98..8ad9e01ae78 100644 --- a/www-servers/tornado/tornado-5.1-r1.ebuild +++ b/www-servers/tornado/tornado-5.1-r1.ebuild @@ -40,7 +40,9 @@ distutils_enable_sphinx docs \ #) python_test() { - "${PYTHON}" -m tornado.test.runtests || die "tests failed under ${EPYTHON}" + local -x ASYNC_TEST_TIMEOUT=60 + "${PYTHON}" -m tornado.test.runtests --verbose || + die "tests failed under ${EPYTHON}" } python_install_all() { diff --git a/www-servers/tornado/tornado-6.0.3-r1.ebuild b/www-servers/tornado/tornado-6.0.3-r1.ebuild index da2aa090acc..971f3a1c557 100644 --- a/www-servers/tornado/tornado-6.0.3-r1.ebuild +++ b/www-servers/tornado/tornado-6.0.3-r1.ebuild @@ -41,7 +41,9 @@ distutils_enable_sphinx docs \ #) python_test() { - "${PYTHON}" -m tornado.test.runtests || die "tests failed under ${EPYTHON}" + local -x ASYNC_TEST_TIMEOUT=60 + "${PYTHON}" -m tornado.test.runtests --verbose || + die "tests failed under ${EPYTHON}" } python_install_all() {