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 3BD9E1382C5 for ; Fri, 23 Feb 2018 23:37:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE4F3E0864; Fri, 23 Feb 2018 23:37:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 CD265E0864 for ; Fri, 23 Feb 2018 23:37:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D110C335C30 for ; Fri, 23 Feb 2018 23:37:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCD0A241 for ; Fri, 23 Feb 2018 23:37:10 +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: <1519429025.255e06265abdc66a8bdaf2f636671e12d94d0039.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cmdtest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cmdtest/cmdtest-0.30.ebuild X-VCS-Directories: dev-util/cmdtest/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 255e06265abdc66a8bdaf2f636671e12d94d0039 X-VCS-Branch: master Date: Fri, 23 Feb 2018 23:37:10 +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-Archives-Salt: 70fae82c-d09d-4bb5-b2d9-f84d9714e170 X-Archives-Hash: 44b1d028b8d1e616fe89d4d2d7901e32 commit: 255e06265abdc66a8bdaf2f636671e12d94d0039 Author: Michał Górny gentoo org> AuthorDate: Fri Feb 23 23:36:34 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Feb 23 23:37:05 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=255e0626 dev-util/cmdtest: Enable tests dev-util/cmdtest/cmdtest-0.30.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-util/cmdtest/cmdtest-0.30.ebuild b/dev-util/cmdtest/cmdtest-0.30.ebuild index c35c2945247..99c7452c7d3 100644 --- a/dev-util/cmdtest/cmdtest-0.30.ebuild +++ b/dev-util/cmdtest/cmdtest-0.30.ebuild @@ -26,3 +26,7 @@ src_compile() { addwrite /proc/self/comm distutils-r1_src_compile } + +python_test() { + "${EPYTHON}" -m unittest discover -v -p '*_tests.py' || die +}