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 712A2139694 for ; Sun, 4 Jun 2017 16:56:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB8E521C200; Sun, 4 Jun 2017 16:56:13 +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 888CE21C200 for ; Sun, 4 Jun 2017 16:56:13 +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 A7F49341971 for ; Sun, 4 Jun 2017 16:56:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3DA1B745F for ; Sun, 4 Jun 2017 16:56:11 +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: <1496595365.9b6aff32fd550c11be24c3761118d29d52229ca0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/freezegun/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/freezegun/freezegun-0.3.9.ebuild X-VCS-Directories: dev-python/freezegun/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9b6aff32fd550c11be24c3761118d29d52229ca0 X-VCS-Branch: master Date: Sun, 4 Jun 2017 16:56:11 +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: 0401e134-e03f-4b17-8a86-8f59c773bafa X-Archives-Hash: a87092e27d917cca7bd2908ecf7de303 commit: 9b6aff32fd550c11be24c3761118d29d52229ca0 Author: Michał Górny gentoo org> AuthorDate: Sun Jun 4 09:44:12 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jun 4 16:56:05 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b6aff32 dev-python/freezegun: Tested on pypy{,3} dev-python/freezegun/freezegun-0.3.9.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/freezegun/freezegun-0.3.9.ebuild b/dev-python/freezegun/freezegun-0.3.9.ebuild index 2bbc4fe8556..a782d8873da 100644 --- a/dev-python/freezegun/freezegun-0.3.9.ebuild +++ b/dev-python/freezegun/freezegun-0.3.9.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} ) inherit distutils-r1 @@ -23,5 +23,5 @@ DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" python_test() { - nosetests || die + nosetests -v || die }