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 CC341158087 for ; Tue, 1 Feb 2022 18:43:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B7392BC04A; Tue, 1 Feb 2022 18:43:30 +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 3F7A52BC042 for ; Tue, 1 Feb 2022 18:43:30 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 087643430FC for ; Tue, 1 Feb 2022 18:43:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96900166 for ; Tue, 1 Feb 2022 18:43:27 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1643740997.07c89b58e2103d0ab87ff403e46b9d37dd0a560f.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gssapi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/gssapi/gssapi-1.7.2.ebuild X-VCS-Directories: dev-python/gssapi/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 07c89b58e2103d0ab87ff403e46b9d37dd0a560f X-VCS-Branch: master Date: Tue, 1 Feb 2022 18:43:27 +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: 28e9d2c6-55db-43ca-b15e-d0fa20082614 X-Archives-Hash: 3349c20a30c3bd4333169c53a9eac63e commit: 07c89b58e2103d0ab87ff403e46b9d37dd0a560f Author: Arthur Zamarin gentoo org> AuthorDate: Tue Feb 1 18:08:44 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Tue Feb 1 18:43:17 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07c89b58 dev-python/gssapi: fix test calls Use better way to handle pytest C errors Fixes: 38695c204978839a830c4800e9ab669dcbc391f0 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/gssapi/gssapi-1.7.2.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dev-python/gssapi/gssapi-1.7.2.ebuild b/dev-python/gssapi/gssapi-1.7.2.ebuild index 3879ab4da406..491966350410 100644 --- a/dev-python/gssapi/gssapi-1.7.2.ebuild +++ b/dev-python/gssapi/gssapi-1.7.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -31,7 +31,6 @@ BDEPEND=" distutils_enable_tests pytest python_test() { - cp -r -l -n gssapi "${BUILD_DIR}/lib" || die - cd "${BUILD_DIR}/lib" || die - epytest + cd "${T}" || die + epytest --pyargs gssapi }