From: Virgil Dupras Date: Wed, 1 Aug 2018 00:48:54 +0000 (-0400) Subject: dev-python/invoke: explicitly load pytest-relaxed plugin X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=cfdccf48a2b1651a903f67bae2fc91dc132b9ed3;p=gentoo.git dev-python/invoke: explicitly load pytest-relaxed plugin Bug: https://bugs.gentoo.org/661218 Package-Manager: Portage-2.3.44, Repoman-2.3.10 --- diff --git a/dev-python/invoke/invoke-1.1.0.ebuild b/dev-python/invoke/invoke-1.1.0.ebuild index 80bbd00caf23..59e4a80b9830 100644 --- a/dev-python/invoke/invoke-1.1.0.ebuild +++ b/dev-python/invoke/invoke-1.1.0.ebuild @@ -29,5 +29,6 @@ PATCHES=( python_test() { # -s flag is important: tests fail when pytest isn't in "no capture" mode - ${EPYTHON} -m pytest -s -v + # -p pytest_relaxed: this plugin has to be loaded explicitly + pytest -s -v -p pytest_relaxed.plugin || die "Tests failed" }