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 1027B138350 for ; Fri, 28 Feb 2020 06:06:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25FEAE088C; Fri, 28 Feb 2020 06:06:10 +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 027E8E088C for ; Fri, 28 Feb 2020 06:06:09 +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 F319634F42D for ; Fri, 28 Feb 2020 06:06:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CEB16101 for ; Fri, 28 Feb 2020 06:06:05 +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: <1582869407.13440a2da516a0c9794bd0bb1e8a7968254dc9a9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/parso/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/parso/parso-0.6.1.ebuild X-VCS-Directories: dev-python/parso/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 13440a2da516a0c9794bd0bb1e8a7968254dc9a9 X-VCS-Branch: master Date: Fri, 28 Feb 2020 06:06:05 +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: 09817c03-fb2d-4c14-b814-89f5e91a1283 X-Archives-Hash: f45a5955a5e9e8356c58243caabfd1a8 commit: 13440a2da516a0c9794bd0bb1e8a7968254dc9a9 Author: Michał Górny gentoo org> AuthorDate: Fri Feb 28 05:56:47 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Feb 28 05:56:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13440a2d dev-python/parso: Disable failing error tests Disable error tests that started failing with Python 3.8.2 as they depend on exact exception messages. Signed-off-by: Michał Górny gentoo.org> dev-python/parso/parso-0.6.1.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev-python/parso/parso-0.6.1.ebuild b/dev-python/parso/parso-0.6.1.ebuild index d33ced31acc..d9dff2d95d4 100644 --- a/dev-python/parso/parso-0.6.1.ebuild +++ b/dev-python/parso/parso-0.6.1.ebuild @@ -19,3 +19,11 @@ RESTRICT="!test? ( test )" distutils_enable_sphinx docs distutils_enable_tests pytest + +src_prepare() { + # tests rely on specific exception messages and fail occasionally + # upstream suggested skipping them + rm test/test_python_errors.py || die + + distutils-r1_src_prepare +}