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 E3E691384B4 for ; Mon, 2 Nov 2015 11:50:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F304B21C003; Mon, 2 Nov 2015 11:50:47 +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 881F921C003 for ; Mon, 2 Nov 2015 11:50:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AAF4C34078E for ; Mon, 2 Nov 2015 11:50:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED3AD1E54 for ; Mon, 2 Nov 2015 11:50:43 +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: <1446464832.cff96997b7d381b1e081c02161c23772f8f6464e.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/testrepository/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/testrepository/testrepository-0.0.20.ebuild X-VCS-Directories: dev-python/testrepository/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: cff96997b7d381b1e081c02161c23772f8f6464e X-VCS-Branch: master Date: Mon, 2 Nov 2015 11:50:43 +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: 4c5f0024-a919-4ad1-a49b-915cc56acc49 X-Archives-Hash: d71586502b340e6ff2775c6ca207e097 commit: cff96997b7d381b1e081c02161c23772f8f6464e Author: Justin Lecher gentoo org> AuthorDate: Sun Nov 1 17:08:43 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Nov 2 11:47:12 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cff96997 dev-python/testrepository: Restrict tests Github: testing-cabal/testrepository#18 Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/testrepository/testrepository-0.0.20.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/testrepository/testrepository-0.0.20.ebuild b/dev-python/testrepository/testrepository-0.0.20.ebuild index ae10b32..e1dba2e 100644 --- a/dev-python/testrepository/testrepository-0.0.20.ebuild +++ b/dev-python/testrepository/testrepository-0.0.20.ebuild @@ -34,9 +34,13 @@ DEPEND=" # Required for test phase DISTUTILS_IN_SOURCE_BUILD=1 +# https://github.com/testing-cabal/testrepository/issues/18 +RESTRICT=test + python_test() { # some errors appear to have crept in the suite undert py3 since addition. # Python2.7 now passes all. - esetup.py testr + ${PYTHON} testr init || die + ${PYTHON} testr run || die }