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 A9B72138334 for ; Wed, 25 Jul 2018 21:21:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F6EAE0824; Wed, 25 Jul 2018 21:21:03 +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 5C580E0824 for ; Wed, 25 Jul 2018 21:21:02 +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 33D61335C8C for ; Wed, 25 Jul 2018 21:21:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30556353 for ; Wed, 25 Jul 2018 21:20:59 +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: <1532553646.62d0c0f7a728ebd4a1201755b3c3fb4b68a10aec.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-stream/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-stream/jaraco-stream-1.2.ebuild X-VCS-Directories: dev-python/jaraco-stream/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 62d0c0f7a728ebd4a1201755b3c3fb4b68a10aec X-VCS-Branch: master Date: Wed, 25 Jul 2018 21:20:59 +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: 45a0f362-ef2e-40b1-8438-45c332d7bcd7 X-Archives-Hash: e7a269797488125de47444ca6cfaacf5 commit: 62d0c0f7a728ebd4a1201755b3c3fb4b68a10aec Author: Louis Sautier gentoo org> AuthorDate: Wed Jul 25 21:20:46 2018 +0000 Commit: Louis Sautier gentoo org> CommitDate: Wed Jul 25 21:20:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62d0c0f7 dev-python/jaraco-stream: add Python 3.7, more verbose tests Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-python/jaraco-stream/jaraco-stream-1.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/jaraco-stream/jaraco-stream-1.2.ebuild b/dev-python/jaraco-stream/jaraco-stream-1.2.ebuild index 8aa4e6c4082..b990da9621d 100644 --- a/dev-python/jaraco-stream/jaraco-stream-1.2.ebuild +++ b/dev-python/jaraco-stream/jaraco-stream-1.2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6}} ) +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6,7}} ) inherit distutils-r1 @@ -47,7 +47,7 @@ python_compile_all() { python_test() { # Skip one test which requires network access # Override pytest options to skip flake8 - PYTHONPATH=. py.test --ignore=jaraco/stream/test_gzip.py \ + PYTHONPATH=. pytest -vv --ignore=jaraco/stream/test_gzip.py \ --override-ini="addopts=--doctest-modules" \ || die "tests failed with ${EPYTHON}" }