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 9895F13835A for ; Wed, 17 Jun 2020 19:24:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C810AE096D; Wed, 17 Jun 2020 19:24:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 AE243E096D for ; Wed, 17 Jun 2020 19:24:29 +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 677A634F33F for ; Wed, 17 Jun 2020 19:24:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E4E6D3 for ; Wed, 17 Jun 2020 19:24:26 +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: <1592421837.9d2339861e5d7ff83c2f99c6205490cdf342855d.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-6.0.4.ebuild X-VCS-Directories: www-servers/tornado/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9d2339861e5d7ff83c2f99c6205490cdf342855d X-VCS-Branch: master Date: Wed, 17 Jun 2020 19:24:26 +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: fd5fa111-74ca-4eb4-abd4-08f3447bf01c X-Archives-Hash: 9dcddd3ab556166ac5317cf83f6b133c commit: 9d2339861e5d7ff83c2f99c6205490cdf342855d Author: Michał Górny gentoo org> AuthorDate: Wed Jun 17 11:00:27 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 17 19:23:57 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d233986 www-servers/tornado: Fix testing speedups Signed-off-by: Michał Górny gentoo.org> www-servers/tornado/tornado-6.0.4.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/www-servers/tornado/tornado-6.0.4.ebuild b/www-servers/tornado/tornado-6.0.4.ebuild index e0d9db3ce16..ee6d9ccf897 100644 --- a/www-servers/tornado/tornado-6.0.4.ebuild +++ b/www-servers/tornado/tornado-6.0.4.ebuild @@ -43,6 +43,7 @@ src_prepare() { python_test() { local -x ASYNC_TEST_TIMEOUT=60 + cd "${BUILD_DIR}/lib" || die "${PYTHON}" -m tornado.test.runtests --verbose || die "tests failed under ${EPYTHON}" }