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 EB50D138334 for ; Wed, 25 Jul 2018 20:00:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5A5AE086D; Wed, 25 Jul 2018 20:00:16 +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 8E3DAE086D for ; Wed, 25 Jul 2018 20:00:16 +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 C4C66335C9E for ; Wed, 25 Jul 2018 20:00:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0ED74365 for ; Wed, 25 Jul 2018 20:00:07 +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: <1532548770.0fbd3db01ff441c2286835555f3a039ea23a1057.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-functools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-functools/jaraco-functools-1.20.ebuild X-VCS-Directories: dev-python/jaraco-functools/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 0fbd3db01ff441c2286835555f3a039ea23a1057 X-VCS-Branch: master Date: Wed, 25 Jul 2018 20:00:07 +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: ed91bc0e-7194-4bc0-95bc-ac0db84cd0a9 X-Archives-Hash: 409574ef8399f1836c753e1ad466c665 commit: 0fbd3db01ff441c2286835555f3a039ea23a1057 Author: Louis Sautier gentoo org> AuthorDate: Wed Jul 25 19:54:00 2018 +0000 Commit: Louis Sautier gentoo org> CommitDate: Wed Jul 25 19:59:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fbd3db0 dev-python/jaraco-functools: add Python 3.7, more verbose tests Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-python/jaraco-functools/jaraco-functools-1.20.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/jaraco-functools/jaraco-functools-1.20.ebuild b/dev-python/jaraco-functools/jaraco-functools-1.20.ebuild index 74eb81aba71..f50cec31eb6 100644 --- a/dev-python/jaraco-functools/jaraco-functools-1.20.ebuild +++ b/dev-python/jaraco-functools/jaraco-functools-1.20.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( pypy3 python{2_7,3_{4,5,6}} ) +PYTHON_COMPAT=( pypy3 python{2_7,3_{4,5,6,7}} ) inherit distutils-r1 @@ -50,7 +50,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}" }