From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AACEB138334 for ; Wed, 1 Aug 2018 12:11:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38504E086F; Wed, 1 Aug 2018 12:11:06 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 05514E086F for ; Wed, 1 Aug 2018 12:11:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A4345335C36 for ; Wed, 1 Aug 2018 12:11:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C00923A9 for ; Wed, 1 Aug 2018 12:11:01 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1533125399.e647b476018a2f9e16c9c507ffd02fad8121aa45.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fabric/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/fabric/fabric-2.2.1.ebuild X-VCS-Directories: dev-python/fabric/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: e647b476018a2f9e16c9c507ffd02fad8121aa45 X-VCS-Branch: master Date: Wed, 1 Aug 2018 12:11:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c3215fb6-4dac-4933-9036-e1bff4f50481 X-Archives-Hash: 269929cfacead0910dcffa17ca8816bb commit: e647b476018a2f9e16c9c507ffd02fad8121aa45 Author: Virgil Dupras gentoo org> AuthorDate: Wed Aug 1 00:50:07 2018 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Wed Aug 1 12:09:59 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e647b476 dev-python/fabric: load pytest-relaxed plugin explicitly Bug: https://bugs.gentoo.org/661218 Package-Manager: Portage-2.3.44, Repoman-2.3.10 dev-python/fabric/fabric-2.2.1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/fabric/fabric-2.2.1.ebuild b/dev-python/fabric/fabric-2.2.1.ebuild index dddf7851f84..00240b6a9c1 100644 --- a/dev-python/fabric/fabric-2.2.1.ebuild +++ b/dev-python/fabric/fabric-2.2.1.ebuild @@ -52,7 +52,8 @@ python_compile_all() { } python_test() { - ${EPYTHON} -m pytest -s -v || die "Tests failed" + # -p pytest_relaxed: this plugin has to be loaded explicitly + pytest -s -v -p pytest_relaxed.plugin || die "Tests failed" } python_install_all() {