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 C4F68138334 for ; Tue, 24 Jul 2018 23:02:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCB70E085E; Tue, 24 Jul 2018 23:02:56 +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 938ADE085E for ; Tue, 24 Jul 2018 23:02:56 +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 CB3EF33D3CF for ; Tue, 24 Jul 2018 23:02:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF75F36B for ; Tue, 24 Jul 2018 23:02:52 +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: <1532473363.3d86abd8cd1bba4d97673929e3d449a8da575618.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/denonavr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/denonavr/denonavr-0.7.4.ebuild X-VCS-Directories: dev-python/denonavr/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 3d86abd8cd1bba4d97673929e3d449a8da575618 X-VCS-Branch: master Date: Tue, 24 Jul 2018 23:02:52 +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: e8860d6b-9afb-4c47-939e-998a6f6d9513 X-Archives-Hash: 2012308b93e471a5de7df5f7b626ed83 commit: 3d86abd8cd1bba4d97673929e3d449a8da575618 Author: Louis Sautier gentoo org> AuthorDate: Tue Jul 24 23:02:37 2018 +0000 Commit: Louis Sautier gentoo org> CommitDate: Tue Jul 24 23:02:43 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d86abd8 dev-python/denonavr: add Python 3.7, make tests more verbose Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-python/denonavr/denonavr-0.7.4.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/denonavr/denonavr-0.7.4.ebuild b/dev-python/denonavr/denonavr-0.7.4.ebuild index 4a3aab11963..6f32967db35 100644 --- a/dev-python/denonavr/denonavr-0.7.4.ebuild +++ b/dev-python/denonavr/denonavr-0.7.4.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{4,5,6} ) +PYTHON_COMPAT=( python3_{4,5,6,7} ) PYTHON_REQ_USE="xml(+)" inherit distutils-r1 @@ -29,5 +29,5 @@ DEPEND=" " python_test() { - py.test || die "tests failed with ${EPYTHON}" + pytest -vv || die "tests failed with ${EPYTHON}" }