From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D84881384B4 for ; Fri, 4 Dec 2015 06:58:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6EF3621C0D3; Fri, 4 Dec 2015 06:58:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 09B8621C0D3 for ; Fri, 4 Dec 2015 06:58:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 18B3F340A3B for ; Fri, 4 Dec 2015 06:58:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E67E1A1B for ; Fri, 4 Dec 2015 06:58:23 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1449212302.5a8104ed202a849a680b9b9cf22ad0fdc4f64c25.jlec@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.4.1.ebuild X-VCS-Directories: dev-python/astroid/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 5a8104ed202a849a680b9b9cf22ad0fdc4f64c25 X-VCS-Branch: master Date: Fri, 4 Dec 2015 06:58:23 +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: 36c31092-43a3-446e-89db-783b81cb2b34 X-Archives-Hash: 21d89fb86e02b06eb68afa14abd7c736 commit: 5a8104ed202a849a680b9b9cf22ad0fdc4f64c25 Author: Justin Lecher gentoo org> AuthorDate: Fri Dec 4 06:58:06 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri Dec 4 06:58:22 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a8104ed dev-python/astroid: Update tests Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher gentoo.org> dev-python/astroid/astroid-1.4.1.ebuild | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dev-python/astroid/astroid-1.4.1.ebuild b/dev-python/astroid/astroid-1.4.1.ebuild index 489fcb9..3ea1116 100644 --- a/dev-python/astroid/astroid-1.4.1.ebuild +++ b/dev-python/astroid/astroid-1.4.1.ebuild @@ -38,7 +38,5 @@ DEPEND=" DISTUTILS_IN_SOURCE_BUILD=1 python_test() { - pushd build/lib > /dev/null || die - PYTHONPATH=. pytest --verbose || die "Tests fail with ${EPYTHON}" - popd > /dev/null || die + ${EPYTHON} -m unittest discover -p "unittest*.py" --verbose || die }