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 4C430138350 for ; Wed, 1 Apr 2020 21:35:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3535CE0D22; Wed, 1 Apr 2020 21:35:49 +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 1A26DE0D22 for ; Wed, 1 Apr 2020 21:35:49 +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 2C09F34FB79 for ; Wed, 1 Apr 2020 21:35:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C91E2150 for ; Wed, 1 Apr 2020 21:35:46 +0000 (UTC) From: "Sven Wegener" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Wegener" Message-ID: <1585776943.d860cc01a9fb0585f6a1ae70147bba2a06ff92a7.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hiredis/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/hiredis/hiredis-1.0.1.ebuild X-VCS-Directories: dev-python/hiredis/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: d860cc01a9fb0585f6a1ae70147bba2a06ff92a7 X-VCS-Branch: master Date: Wed, 1 Apr 2020 21:35:46 +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: 2216fb6b-014e-42b4-86f8-d8f7ffd63fb0 X-Archives-Hash: 08d315e4e2913b12c66f6c32305764df commit: d860cc01a9fb0585f6a1ae70147bba2a06ff92a7 Author: Sven Wegener gentoo org> AuthorDate: Wed Apr 1 21:33:44 2020 +0000 Commit: Sven Wegener gentoo org> CommitDate: Wed Apr 1 21:35:43 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d860cc01 dev-python/hiredis: Add python_test() Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Sven Wegener gentoo.org> dev-python/hiredis/hiredis-1.0.1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-python/hiredis/hiredis-1.0.1.ebuild b/dev-python/hiredis/hiredis-1.0.1.ebuild index bc7739eaeec..1e14c85fa39 100644 --- a/dev-python/hiredis/hiredis-1.0.1.ebuild +++ b/dev-python/hiredis/hiredis-1.0.1.ebuild @@ -22,3 +22,8 @@ PATCHES=( "${FILESDIR}"/${P}-system-libs.patch "${FILESDIR}"/${P}-api-0.14.patch ) + +python_test() { + cd test + "${EPYTHON}" -m unittest reader.ReaderTest || die "tests failed" +}