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 9AF93138334 for ; Wed, 25 Jul 2018 21:39:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 649A6E0830; Wed, 25 Jul 2018 21:39:41 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 32046E0830 for ; Wed, 25 Jul 2018 21:39:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E360F335C9F for ; Wed, 25 Jul 2018 21:39:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A67E4353 for ; Wed, 25 Jul 2018 21:39:36 +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: <1532554770.e7895965838ff425914a8fd61e0e443662295d20.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-logging/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-logging/jaraco-logging-1.5.2.ebuild X-VCS-Directories: dev-python/jaraco-logging/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: e7895965838ff425914a8fd61e0e443662295d20 X-VCS-Branch: master Date: Wed, 25 Jul 2018 21:39:36 +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: ef61fa2e-17fb-4c2f-b154-bef58e2ed7a6 X-Archives-Hash: 771c4567572fddae4c6b2bbc67f56526 commit: e7895965838ff425914a8fd61e0e443662295d20 Author: Louis Sautier gentoo org> AuthorDate: Wed Jul 25 21:32:27 2018 +0000 Commit: Louis Sautier gentoo org> CommitDate: Wed Jul 25 21:39:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7895965 dev-python/jaraco-logging: add Python 3.7, verbose tests, drop PyPy This package depends on dev-python/tempora. Recent versions of it require dev-python/jaraco-functools which doesn't support PyPy. Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-python/jaraco-logging/jaraco-logging-1.5.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/jaraco-logging/jaraco-logging-1.5.2.ebuild b/dev-python/jaraco-logging/jaraco-logging-1.5.2.ebuild index 0b9ca834e44..606284a9c65 100644 --- a/dev-python/jaraco-logging/jaraco-logging-1.5.2.ebuild +++ b/dev-python/jaraco-logging/jaraco-logging-1.5.2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6}} ) +PYTHON_COMPAT=( pypy3 python{2_7,3_{4,5,6,7}} ) inherit distutils-r1 @@ -48,7 +48,7 @@ python_compile_all() { python_test() { # Override pytest options to skip flake8 - PYTHONPATH=. py.test --override-ini="addopts=--doctest-modules" \ + PYTHONPATH=. pytest -v --override-ini="addopts=--doctest-modules" \ || die "tests failed with ${EPYTHON}" }