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 C0A94139695 for ; Tue, 16 May 2017 21:05:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6A90E0DF3; Tue, 16 May 2017 21:05:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8F864E0DD6 for ; Tue, 16 May 2017 21:05:32 +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 BAE3E3416BD for ; Tue, 16 May 2017 21:05:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 809B6745E for ; Tue, 16 May 2017 21:05:30 +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: <1494968717.b83f8744e125f48dc8d588a312b13e98ee42bb10.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/astroid/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/astroid/astroid-1.5.2-r1.ebuild X-VCS-Directories: dev-python/astroid/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b83f8744e125f48dc8d588a312b13e98ee42bb10 X-VCS-Branch: master Date: Tue, 16 May 2017 21:05:30 +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: c9597fdf-92cc-488a-8343-f1a68bab4863 X-Archives-Hash: 0797c160a24fd511ce5f6a2742d339ec commit: b83f8744e125f48dc8d588a312b13e98ee42bb10 Author: Michał Górny gentoo org> AuthorDate: Tue May 16 19:36:38 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 16 21:05:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b83f8744 dev-python/astroid: XFAIL xml test dev-python/astroid/astroid-1.5.2-r1.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-python/astroid/astroid-1.5.2-r1.ebuild b/dev-python/astroid/astroid-1.5.2-r1.ebuild index b21f08429ad..e3296e7b91b 100644 --- a/dev-python/astroid/astroid-1.5.2-r1.ebuild +++ b/dev-python/astroid/astroid-1.5.2-r1.ebuild @@ -38,8 +38,13 @@ DEPEND=" DISTUTILS_IN_SOURCE_BUILD=1 python_prepare_all() { - # Disable failing test - sed -i -e "/test_namespace_package_pth_support/a\\ return" astroid/tests/unittest_manager.py || die + # Disable failing tests + # TODO: investigate if it's our fault and how can we fix it + sed -i -e "s/test_namespace_package_pth_support/_&/" \ + astroid/tests/unittest_manager.py || die + # we hack xml module, so it does not match what they expect... + sed -i -e "s/test_module_model/_&/" \ + astroid/tests/unittest_object_model.py || die distutils-r1_python_prepare_all }