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 B79EB13835B for ; Mon, 3 May 2021 23:33:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD4F9E0895; Mon, 3 May 2021 23:33:04 +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 A581DE0895 for ; Mon, 3 May 2021 23:33:04 +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 386A1340C69 for ; Mon, 3 May 2021 23:33:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9815E744 for ; Mon, 3 May 2021 23:33:01 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1620084445.c5f334f70b5a09646d02f587b5d01c87c7cdfc07.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/aspectlib/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/aspectlib/aspectlib-1.5.2.ebuild X-VCS-Directories: dev-python/aspectlib/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: c5f334f70b5a09646d02f587b5d01c87c7cdfc07 X-VCS-Branch: dev Date: Mon, 3 May 2021 23:33:01 +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: 3975c628-e920-4d69-9202-4c0b874fb68b X-Archives-Hash: 1f38cbc857485038e8a3ce9d1ac54d84 commit: c5f334f70b5a09646d02f587b5d01c87c7cdfc07 Author: Anna Vyalkova sysrq in> AuthorDate: Mon May 3 20:31:32 2021 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Mon May 3 23:27:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c5f334f7 dev-python/aspectlib: disable failing test Closes: https://bugs.gentoo.org/784011 Signed-off-by: Anna Vyalkova sysrq.in> dev-python/aspectlib/aspectlib-1.5.2.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-python/aspectlib/aspectlib-1.5.2.ebuild b/dev-python/aspectlib/aspectlib-1.5.2.ebuild index 5290da079..720bed235 100644 --- a/dev-python/aspectlib/aspectlib-1.5.2.ebuild +++ b/dev-python/aspectlib/aspectlib-1.5.2.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{7,8,9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend +DISTUTILS_USE_SETUPTOOLS=bdepend inherit distutils-r1 @@ -29,7 +29,6 @@ DEPEND=" dev-python/mock[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] dev-python/process-tests[${PYTHON_USEDEP}] - www-servers/tornado[${PYTHON_USEDEP}] ) " @@ -37,3 +36,9 @@ S="${WORKDIR}/python-${P}" distutils_enable_tests pytest distutils_enable_sphinx docs dev-python/sphinx-py3doc-enhanced-theme + +python_test() { + # Test fails with tornado>=6 + # https://github.com/ionelmc/python-aspectlib/issues/15 + epytest --deselect tests/test_integrations_py3.py::test_decorate_tornado_coroutine +}