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 88885138334 for ; Wed, 11 Jul 2018 22:11:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC350E0891; Wed, 11 Jul 2018 22:11:26 +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 B4616E0891 for ; Wed, 11 Jul 2018 22:11:26 +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 94F57335CCB for ; Wed, 11 Jul 2018 22:11:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97078372 for ; Wed, 11 Jul 2018 22:11:22 +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: <1531347079.c83aa6801ca7a94ece44c5b0636d5693a67295b4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest/pytest-3.4.2.ebuild X-VCS-Directories: dev-python/pytest/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c83aa6801ca7a94ece44c5b0636d5693a67295b4 X-VCS-Branch: master Date: Wed, 11 Jul 2018 22:11:22 +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-Archives-Salt: f8df3ae6-9aaf-40ff-a88f-33c24719f623 X-Archives-Hash: a3e5692dc11a8f6d6322075e3b87cc20 commit: c83aa6801ca7a94ece44c5b0636d5693a67295b4 Author: Michał Górny gentoo org> AuthorDate: Wed Jul 11 17:42:49 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jul 11 22:11:19 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c83aa680 dev-python/pytest: Disable hanging py3.5+ tests dev-python/pytest/pytest-3.4.2.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-python/pytest/pytest-3.4.2.ebuild b/dev-python/pytest/pytest-3.4.2.ebuild index 9fb19f1d81b..ed3fc47c722 100644 --- a/dev-python/pytest/pytest-3.4.2.ebuild +++ b/dev-python/pytest/pytest-3.4.2.ebuild @@ -64,6 +64,11 @@ python_prepare_all() { sed -i -e 's:test_wrapped_getfuncargnames_patching:_&:' \ testing/python/integration.py || die + # those tests appear to hang with python3.5+; TODO: investigate why + sed -i -e 's:test_runtest_location_shown_before_test_starts:_&:' \ + testing/test_terminal.py || die + sed -i -e 's:test_trial_pdb:_&:' testing/test_unittest.py || die + distutils-r1_python_prepare_all }