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 36EB7138239 for ; Sat, 7 Dec 2019 16:59:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3BB9E0866; Sat, 7 Dec 2019 16:59:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 8941BE0857 for ; Sat, 7 Dec 2019 16:59:02 +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 7F3EC34D87E for ; Sat, 7 Dec 2019 16:59:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B1B48CB for ; Sat, 7 Dec 2019 16:59:00 +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: <1575737931.cf79358b81c5c3b73e5809a869008d65b5f9ea22.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/bash-completion/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/bash-completion/bash-completion-9999.ebuild X-VCS-Directories: app-shells/bash-completion/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: cf79358b81c5c3b73e5809a869008d65b5f9ea22 X-VCS-Branch: master Date: Sat, 7 Dec 2019 16:59:00 +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: 293daec6-d9a4-400e-a6e5-db2552b6bfa7 X-Archives-Hash: 5e7fbe9e1ed2bada79ab6a650e8cf909 commit: cf79358b81c5c3b73e5809a869008d65b5f9ea22 Author: Michał Górny gentoo org> AuthorDate: Sat Dec 7 08:58:08 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 7 16:58:51 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf79358b app-shells/bash-completion: Disable tests failing in containers Signed-off-by: Michał Górny gentoo.org> app-shells/bash-completion/bash-completion-9999.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-shells/bash-completion/bash-completion-9999.ebuild b/app-shells/bash-completion/bash-completion-9999.ebuild index 2a71e61d56c..4fdb9c19f7f 100644 --- a/app-shells/bash-completion/bash-completion-9999.ebuild +++ b/app-shells/bash-completion/bash-completion-9999.ebuild @@ -92,6 +92,11 @@ src_prepare() { eapply "${WORKDIR}"/bashcomp2/bash-completion-blacklist-support.patch fi + # our setup is close enough to container to cause the same tests + # to fail + sed -i -e '/def in_container/a \ + return True' test/t/conftest.py || die + eautoreconf }