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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 70545158089 for ; Wed, 6 Sep 2023 16:39:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6588E2BC08E; Wed, 6 Sep 2023 16:39:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4BB462BC08E for ; Wed, 6 Sep 2023 16:39:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 51771335CF4 for ; Wed, 6 Sep 2023 16:39:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53DB3BF2 for ; Wed, 6 Sep 2023 16:39:02 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1694018330.f248e1d016be0147166c0e91f9e43ca7513be6bc.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/awscli/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/awscli/awscli-1.29.40.ebuild X-VCS-Directories: app-admin/awscli/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f248e1d016be0147166c0e91f9e43ca7513be6bc X-VCS-Branch: master Date: Wed, 6 Sep 2023 16:39:02 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: de251d04-8f23-464d-9b20-8495e0c024e5 X-Archives-Hash: cae6fb1b11556329b4ae2ca64bcefb72 commit: f248e1d016be0147166c0e91f9e43ca7513be6bc Author: Michał Górny gentoo org> AuthorDate: Wed Sep 6 15:27:38 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Sep 6 16:38:50 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f248e1d0 app-admin/awscli: Disable pytest plugin autoloading Signed-off-by: Michał Górny gentoo.org> app-admin/awscli/awscli-1.29.40.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-admin/awscli/awscli-1.29.40.ebuild b/app-admin/awscli/awscli-1.29.40.ebuild index 62c19f3a63fb..612e893b5bef 100644 --- a/app-admin/awscli/awscli-1.29.40.ebuild +++ b/app-admin/awscli/awscli-1.29.40.ebuild @@ -64,8 +64,11 @@ python_test() { tests/unit/customizations/eks/test_kubeconfig.py::TestKubeconfigValidator::test_valid ) + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 # integration tests require AWS credentials and Internet access - epytest tests/{functional,unit} -n "$(makeopts_jobs)" --forked + epytest tests/{functional,unit} \ + -p xdist -n "$(makeopts_jobs)" \ + -p pytest_forked --forked } python_install_all() {