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 CE4B5138334 for ; Wed, 11 Jul 2018 22:11:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD2D1E0898; Wed, 11 Jul 2018 22:11:31 +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 7F75FE0898 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 BDDA0335CC4 for ; Wed, 11 Jul 2018 22:11:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5CDB036A 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: <1531347078.58a83eee483ae34004de0e4e7c06b6fb269a4c29.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: 58a83eee483ae34004de0e4e7c06b6fb269a4c29 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: c12377f6-2ea5-4f9c-b31c-535432704b5f X-Archives-Hash: 1b1cdc8364de9e2efe0687c7215c7c7d commit: 58a83eee483ae34004de0e4e7c06b6fb269a4c29 Author: Michał Górny gentoo org> AuthorDate: Wed Jul 11 16:21:55 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jul 11 22:11:18 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58a83eee dev-python/pytest: Disable broken test_wrapped_getfuncargnames* Thanks to sbraz for finding the upstream commit. 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 1f02558ba40..335e6ee5647 100644 --- a/dev-python/pytest/pytest-3.4.2.ebuild +++ b/dev-python/pytest/pytest-3.4.2.ebuild @@ -55,6 +55,11 @@ python_prepare_all() { # https://bugs.gentoo.org/598442 rm testing/test_pdb.py || die + # broken and disabled upstream + # https://github.com/pytest-dev/pytest/commit/321f66f71148c978c1bf45dace61886b5e263bd4 + sed -i -e 's:test_wrapped_getfuncargnames_patching:_&:' \ + testing/python/integration.py || die + distutils-r1_python_prepare_all }