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 52FF6138351 for ; Sun, 8 Mar 2020 20:33:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08F69E08A2; Sun, 8 Mar 2020 20:33:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 DFBDEE08A2 for ; Sun, 8 Mar 2020 20:33:02 +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 F103434F352 for ; Sun, 8 Mar 2020 20:33:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 37C93171 for ; Sun, 8 Mar 2020 20:32:57 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1583699232.b7ddf38e1f32984e60d115a9ad595803751c928b.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/astroid/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/astroid/astroid-2.3.3-r1.ebuild X-VCS-Directories: dev-python/astroid/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b7ddf38e1f32984e60d115a9ad595803751c928b X-VCS-Branch: master Date: Sun, 8 Mar 2020 20:32:57 +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: 0fb17902-4cfa-4274-903b-58785ad42890 X-Archives-Hash: 42fccb8c85450d429788c1d7febb4ed0 commit: b7ddf38e1f32984e60d115a9ad595803751c928b Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 8 20:27:12 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 8 20:27:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7ddf38e dev-python/astroid: Fix tests... --pyarg -> --pyargs Bug: https://bugs.gentoo.org/710518 Package-Manager: Portage-2.3.93, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-python/astroid/astroid-2.3.3-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/astroid/astroid-2.3.3-r1.ebuild b/dev-python/astroid/astroid-2.3.3-r1.ebuild index 3227a434164..8c836e228a2 100644 --- a/dev-python/astroid/astroid-2.3.3-r1.ebuild +++ b/dev-python/astroid/astroid-2.3.3-r1.ebuild @@ -48,6 +48,6 @@ python_prepare_all() { } python_test() { - "${EPYTHON}" -m pytest -v --pyarg astroid/tests \ + "${EPYTHON}" -m pytest -v --pyargs astroid/tests \ || die "tests failed with ${EPYTHON}" }