Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-bdd/
Date: Sun, 07 Nov 2021 08:40:48
Message-Id: 1636274274.12035dabeab1cf4a5a75330a197ce2133bf888c0.ionen@gentoo
1 commit: 12035dabeab1cf4a5a75330a197ce2133bf888c0
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 7 06:15:54 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 7 08:37:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12035dab
7
8 dev-python/pytest-bdd: disable pytest plugins autoload
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 dev-python/pytest-bdd/pytest-bdd-4.1.0.ebuild | 4 ++++
13 1 file changed, 4 insertions(+)
14
15 diff --git a/dev-python/pytest-bdd/pytest-bdd-4.1.0.ebuild b/dev-python/pytest-bdd/pytest-bdd-4.1.0.ebuild
16 index c3be9a1f2c6..1b1087b8edf 100644
17 --- a/dev-python/pytest-bdd/pytest-bdd-4.1.0.ebuild
18 +++ b/dev-python/pytest-bdd/pytest-bdd-4.1.0.ebuild
19 @@ -30,5 +30,9 @@ src_test() {
20 # terminal_reporter test needs exact wrapping
21 local -x COLUMNS=80
22
23 + # hooks output parsing may be affected by other pytest-*, e.g. tornasync
24 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
25 + local -x PYTEST_PLUGINS=pytest_bdd.plugin
26 +
27 distutils-r1_src_test
28 }