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 0181D1388BF for ; Sat, 20 Feb 2016 02:30:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7893B21C0F3; Sat, 20 Feb 2016 02:30:09 +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 8ADA821C0F6 for ; Sat, 20 Feb 2016 02:30:08 +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 C0114340DD1 for ; Sat, 20 Feb 2016 02:30:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49E0A1897 for ; Sat, 20 Feb 2016 02:30:05 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1455913305.44195e0a9a9930fc2ceddccbba0e013a17e84042.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mccabe/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mccabe/mccabe-0.4.0.ebuild X-VCS-Directories: dev-python/mccabe/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 44195e0a9a9930fc2ceddccbba0e013a17e84042 X-VCS-Branch: master Date: Sat, 20 Feb 2016 02:30: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-Archives-Salt: a9fc4e63-6c4f-4288-a652-f811819efb6a X-Archives-Hash: be6a7902ba2ffc346c68da6f3a92d3d1 commit: 44195e0a9a9930fc2ceddccbba0e013a17e84042 Author: Ilya Tumaykin gmail com> AuthorDate: Fri Feb 19 19:58:28 2016 +0000 Commit: Ian Delaney gentoo org> CommitDate: Fri Feb 19 20:21:45 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44195e0a dev-python/mccabe: use py.test to run tests This way testsuite actually works on Python < 3.5 because pytest decorators are respected properly. Package-Manager: portage-2.2.27 dev-python/mccabe/mccabe-0.4.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/mccabe/mccabe-0.4.0.ebuild b/dev-python/mccabe/mccabe-0.4.0.ebuild index 22838d6..f3b8516 100644 --- a/dev-python/mccabe/mccabe-0.4.0.ebuild +++ b/dev-python/mccabe/mccabe-0.4.0.ebuild @@ -29,5 +29,5 @@ src_prepare() { } python_test() { - ${EPYTHON} test_mccabe.py || die + py.test -v || die "Testing failed with ${EPYTHON}" }