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 98FE51382C5 for ; Thu, 4 Jun 2020 19:54:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CBE4E089A; Thu, 4 Jun 2020 19:54:52 +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 48E4BE089A for ; Thu, 4 Jun 2020 19:54:52 +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 CA1AC34EF6E for ; Thu, 4 Jun 2020 19:54:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2CCC7276 for ; Thu, 4 Jun 2020 19:54:49 +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: <1591300486.6b17bfab1d0514cf0f4a5b1a365ce9856dca5f27.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/distlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/distlib/distlib-0.3.0.ebuild X-VCS-Directories: dev-python/distlib/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6b17bfab1d0514cf0f4a5b1a365ce9856dca5f27 X-VCS-Branch: master Date: Thu, 4 Jun 2020 19:54:49 +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: 38c52b48-8d9e-4184-b111-deeda1c3914b X-Archives-Hash: 0130bf2b4ae9debf830ca0ff3bda1979 commit: 6b17bfab1d0514cf0f4a5b1a365ce9856dca5f27 Author: Michał Górny gentoo org> AuthorDate: Thu Jun 4 19:54:19 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jun 4 19:54:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b17bfab dev-python/distlib: Skip progress bar tests Signed-off-by: Michał Górny gentoo.org> dev-python/distlib/distlib-0.3.0.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-python/distlib/distlib-0.3.0.ebuild b/dev-python/distlib/distlib-0.3.0.ebuild index f175e215cd6..a70c5be6e17 100644 --- a/dev-python/distlib/distlib-0.3.0.ebuild +++ b/dev-python/distlib/distlib-0.3.0.ebuild @@ -28,6 +28,9 @@ src_prepare() { # no clue but it looks horribly fragile sed -e 's:test_sequencer_basic:_&:' \ -i tests/test_util.py || die + # progress bar test cases, very fragile + sed -e '/ProgressTestCase/s:unittest.TestCase:object:' \ + -i tests/test_util.py || die # TODO: investigate sed -e 's:test_upload:_&:' \ -i tests/test_index.py || die