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 8DA6215800A for ; Sun, 6 Aug 2023 08:48:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE1322BC014; Sun, 6 Aug 2023 08:48:50 +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 B20C32BC014 for ; Sun, 6 Aug 2023 08:48:50 +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 A686A33BEEB for ; Sun, 6 Aug 2023 08:48:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DBFB9F16 for ; Sun, 6 Aug 2023 08:48:47 +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: <1691311720.1b5e474aa9d00bf9a5a26c296e8520f35b83796c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/msgpack/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/msgpack/msgpack-1.0.5.ebuild X-VCS-Directories: dev-python/msgpack/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1b5e474aa9d00bf9a5a26c296e8520f35b83796c X-VCS-Branch: master Date: Sun, 6 Aug 2023 08:48:47 +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: c443c7bd-749c-431f-8f86-248759643737 X-Archives-Hash: e075f556f4f0930d5b8b9c873bd3415b commit: 1b5e474aa9d00bf9a5a26c296e8520f35b83796c Author: Michał Górny gentoo org> AuthorDate: Sun Aug 6 08:40:06 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Aug 6 08:48:40 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b5e474a dev-python/msgpack: Fix testing the C extension Signed-off-by: Michał Górny gentoo.org> dev-python/msgpack/msgpack-1.0.5.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-python/msgpack/msgpack-1.0.5.ebuild b/dev-python/msgpack/msgpack-1.0.5.ebuild index 36bf3247455b..7b71530b8f6a 100644 --- a/dev-python/msgpack/msgpack-1.0.5.ebuild +++ b/dev-python/msgpack/msgpack-1.0.5.ebuild @@ -42,3 +42,8 @@ python_prepare_all() { distutils-r1_python_prepare_all } + +python_test() { + rm -rf msgpack || die + epytest +}