Gentoo Archives: gentoo-commits

From: Justin Bronder <jsbronder@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sabyenc/
Date: Wed, 03 Jan 2018 17:09:12
Message-Id: 1514999324.b54deddbcfad9e1ea690c7a072197465081c9919.jsbronder@gentoo
1 commit: b54deddbcfad9e1ea690c7a072197465081c9919
2 Author: Justin Bronder <jsbronder <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 3 17:08:44 2018 +0000
4 Commit: Justin Bronder <jsbronder <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 17:08:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b54deddb
7
8 dev-python/sabyenc: fix tests with pytest-3.2.2
9
10 https://github.com/sabnzbd/sabyenc/pull/7
11
12 Package-Manager: Portage-2.3.13, Repoman-2.3.3
13
14 dev-python/sabyenc/sabyenc-3.3.1.ebuild | 7 ++++++-
15 1 file changed, 6 insertions(+), 1 deletion(-)
16
17 diff --git a/dev-python/sabyenc/sabyenc-3.3.1.ebuild b/dev-python/sabyenc/sabyenc-3.3.1.ebuild
18 index 0a4c2171daf..f464f448110 100644
19 --- a/dev-python/sabyenc/sabyenc-3.3.1.ebuild
20 +++ b/dev-python/sabyenc/sabyenc-3.3.1.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 +# Copyright 1999-2018 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI="6"
27 @@ -21,5 +21,10 @@ DEPEND="
28 DOCS=( CHANGES.md README.md doc/yenc-draft.1.3.txt )
29
30 python_test() {
31 + # https://github.com/sabnzbd/sabyenc/pull/7
32 + cat <<-EOF > pytest.ini
33 + [pytest]
34 + norecursedirs = yencfiles
35 + EOF
36 pytest -v || die "Test failed."
37 }