From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1038826-garchives=archives.gentoo.org@lists.gentoo.org> 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 5A2E4138334 for <garchives@archives.gentoo.org>; Wed, 25 Jul 2018 21:10:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE197E085B; Wed, 25 Jul 2018 21:10:28 +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 AD279E085B for <gentoo-commits@lists.gentoo.org>; Wed, 25 Jul 2018 21:10:28 +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 00422335C94 for <gentoo-commits@lists.gentoo.org>; Wed, 25 Jul 2018 21:10:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 671BC389 for <gentoo-commits@lists.gentoo.org>; Wed, 25 Jul 2018 21:10:25 +0000 (UTC) From: "Louis Sautier" <sbraz@gentoo.org> 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" <sbraz@gentoo.org> Message-ID: <1532553011.e427afcc07643c78f23052aa4328f4d37d8e2a63.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-itertools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-itertools/jaraco-itertools-2.4.ebuild X-VCS-Directories: dev-python/jaraco-itertools/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: e427afcc07643c78f23052aa4328f4d37d8e2a63 X-VCS-Branch: master Date: Wed, 25 Jul 2018 21:10:25 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 30f2408f-5b6a-41dd-9294-2831f04393a6 X-Archives-Hash: 664a35fdb40f41007e5fcc1cfa5920f1 commit: e427afcc07643c78f23052aa4328f4d37d8e2a63 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org> AuthorDate: Wed Jul 25 21:10:11 2018 +0000 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org> CommitDate: Wed Jul 25 21:10:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e427afcc dev-python/jaraco-itertools: add Python 3.7, more verbose tests Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-python/jaraco-itertools/jaraco-itertools-2.4.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/jaraco-itertools/jaraco-itertools-2.4.ebuild b/dev-python/jaraco-itertools/jaraco-itertools-2.4.ebuild index 239e74badae..86d3ccea615 100644 --- a/dev-python/jaraco-itertools/jaraco-itertools-2.4.ebuild +++ b/dev-python/jaraco-itertools/jaraco-itertools-2.4.ebuild @@ -4,7 +4,7 @@ EAPI=7 # Tests fail with PyPy and PyPy 3 -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 -v --override-ini="addopts=--doctest-modules" \ || die "tests failed with ${EPYTHON}" }