Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest/
Date: Mon, 02 Nov 2015 11:50:56
Message-Id: 1446464832.6cd4cf695f5458dad594739108da3e2c580e6bd4.jlec@gentoo
1 commit: 6cd4cf695f5458dad594739108da3e2c580e6bd4
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 1 20:52:48 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 2 11:47:12 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cd4cf69
7
8 dev-python/pytest: Restrict failing tests
9
10 Package-Manager: portage-2.2.23
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/pytest/pytest-2.8.2.ebuild | 7 +++++++
14 1 file changed, 7 insertions(+)
15
16 diff --git a/dev-python/pytest/pytest-2.8.2.ebuild b/dev-python/pytest/pytest-2.8.2.ebuild
17 index 7a1d5ac..3451f96 100644
18 --- a/dev-python/pytest/pytest-2.8.2.ebuild
19 +++ b/dev-python/pytest/pytest-2.8.2.ebuild
20 @@ -45,6 +45,13 @@ python_prepare_all() {
21
22 # Prevent un-needed d'loading
23 sed -e "s/'sphinx.ext.intersphinx', //" -i doc/en/conf.py || die
24 +
25 + # https://github.com/pytest-dev/pytest/issues/1162
26 + # https://github.com/pytest-dev/pytest/issues/1163
27 + sed \
28 + -e 's:test_logging_initialized_in_test:_&:g' \
29 + -i testing/test_capture.py || die
30 +
31 distutils-r1_python_prepare_all
32 }