Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fabric/
Date: Wed, 01 Aug 2018 12:11:07
Message-Id: 1533125399.e647b476018a2f9e16c9c507ffd02fad8121aa45.vdupras@gentoo
1 commit: e647b476018a2f9e16c9c507ffd02fad8121aa45
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 00:50:07 2018 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 1 12:09:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e647b476
7
8 dev-python/fabric: load pytest-relaxed plugin explicitly
9
10 Bug: https://bugs.gentoo.org/661218
11 Package-Manager: Portage-2.3.44, Repoman-2.3.10
12
13 dev-python/fabric/fabric-2.2.1.ebuild | 3 ++-
14 1 file changed, 2 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-python/fabric/fabric-2.2.1.ebuild b/dev-python/fabric/fabric-2.2.1.ebuild
17 index dddf7851f84..00240b6a9c1 100644
18 --- a/dev-python/fabric/fabric-2.2.1.ebuild
19 +++ b/dev-python/fabric/fabric-2.2.1.ebuild
20 @@ -52,7 +52,8 @@ python_compile_all() {
21 }
22
23 python_test() {
24 - ${EPYTHON} -m pytest -s -v || die "Tests failed"
25 + # -p pytest_relaxed: this plugin has to be loaded explicitly
26 + pytest -s -v -p pytest_relaxed.plugin || die "Tests failed"
27 }
28
29 python_install_all() {