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 4D81A138335 for ; Sat, 28 Jul 2018 22:50:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DCD4E0844; Sat, 28 Jul 2018 22:50:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F2775E0844 for ; Sat, 28 Jul 2018 22:50:17 +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 03953335CA9 for ; Sat, 28 Jul 2018 22:50:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08793389 for ; Sat, 28 Jul 2018 22:50:06 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1532817371.c22a087999389fe3d8c3bd0dd0b16666f25ae62e.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-collections/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-collections/jaraco-collections-1.5.3.ebuild X-VCS-Directories: dev-python/jaraco-collections/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: c22a087999389fe3d8c3bd0dd0b16666f25ae62e X-VCS-Branch: master Date: Sat, 28 Jul 2018 22:50:06 +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: 5921fd07-5330-4a45-9a44-18a9af93bac0 X-Archives-Hash: f09bdbfdc65cca86bd0bb90aaae134f2 commit: c22a087999389fe3d8c3bd0dd0b16666f25ae62e Author: Louis Sautier gentoo org> AuthorDate: Sat Jul 28 22:36:11 2018 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sat Jul 28 22:36:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c22a0879 dev-python/jaraco-collections: add Python 3.7, make tests verbose Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-python/jaraco-collections/jaraco-collections-1.5.3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/jaraco-collections/jaraco-collections-1.5.3.ebuild b/dev-python/jaraco-collections/jaraco-collections-1.5.3.ebuild index bd576051b34..916b0071269 100644 --- a/dev-python/jaraco-collections/jaraco-collections-1.5.3.ebuild +++ b/dev-python/jaraco-collections/jaraco-collections-1.5.3.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) +PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} ) inherit distutils-r1 @@ -49,7 +49,7 @@ python_compile_all() { python_test() { # Override pytest options to skip flake8 - PYTHONPATH=. py.test --override-ini="addopts=--doctest-modules" \ + PYTHONPATH=. pytest -vv --override-ini="addopts=--doctest-modules" \ || die "tests failed with ${EPYTHON}" }