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 84F61138206 for ; Wed, 3 Jan 2018 17:09:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0897E0843; Wed, 3 Jan 2018 17:09:11 +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 9EA63E0843 for ; Wed, 3 Jan 2018 17:09:11 +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 6F444335C09 for ; Wed, 3 Jan 2018 17:09:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 315AE1B8 for ; Wed, 3 Jan 2018 17:09:08 +0000 (UTC) From: "Justin Bronder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Bronder" Message-ID: <1514999324.b54deddbcfad9e1ea690c7a072197465081c9919.jsbronder@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sabyenc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sabyenc/sabyenc-3.3.1.ebuild X-VCS-Directories: dev-python/sabyenc/ X-VCS-Committer: jsbronder X-VCS-Committer-Name: Justin Bronder X-VCS-Revision: b54deddbcfad9e1ea690c7a072197465081c9919 X-VCS-Branch: master Date: Wed, 3 Jan 2018 17:09:08 +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: b45d77b2-04c2-410f-91ec-7e7cac839e41 X-Archives-Hash: 2a38df1c16415513cf557de9f8a7aa72 commit: b54deddbcfad9e1ea690c7a072197465081c9919 Author: Justin Bronder gentoo org> AuthorDate: Wed Jan 3 17:08:44 2018 +0000 Commit: Justin Bronder gentoo org> CommitDate: Wed Jan 3 17:08:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b54deddb dev-python/sabyenc: fix tests with pytest-3.2.2 https://github.com/sabnzbd/sabyenc/pull/7 Package-Manager: Portage-2.3.13, Repoman-2.3.3 dev-python/sabyenc/sabyenc-3.3.1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-python/sabyenc/sabyenc-3.3.1.ebuild b/dev-python/sabyenc/sabyenc-3.3.1.ebuild index 0a4c2171daf..f464f448110 100644 --- a/dev-python/sabyenc/sabyenc-3.3.1.ebuild +++ b/dev-python/sabyenc/sabyenc-3.3.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -21,5 +21,10 @@ DEPEND=" DOCS=( CHANGES.md README.md doc/yenc-draft.1.3.txt ) python_test() { + # https://github.com/sabnzbd/sabyenc/pull/7 + cat <<-EOF > pytest.ini + [pytest] + norecursedirs = yencfiles + EOF pytest -v || die "Test failed." }