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 9F1B3138331 for ; Fri, 23 Feb 2018 23:37:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CF4EE086A; Fri, 23 Feb 2018 23:37:15 +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 DCC2FE086A 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 A8EE7335C43 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 B65FD23F 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: <1519429024.1f6342e413caa45164e0de30cdbae58284a09ec2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ttystatus/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ttystatus/ttystatus-0.35.ebuild X-VCS-Directories: dev-python/ttystatus/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1f6342e413caa45164e0de30cdbae58284a09ec2 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: 42b534f3-7826-4edb-a6bf-9127a0042a45 X-Archives-Hash: 9959728d9764b3a9ba0fe5890c2c0553 commit: 1f6342e413caa45164e0de30cdbae58284a09ec2 Author: Michał Górny gentoo org> AuthorDate: Fri Feb 23 23:34:29 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Feb 23 23:37:04 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f6342e4 dev-python/ttystatus: Enable testing dev-python/ttystatus/ttystatus-0.35.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-python/ttystatus/ttystatus-0.35.ebuild b/dev-python/ttystatus/ttystatus-0.35.ebuild index 7549ff37d00..5c97f4dd32c 100644 --- a/dev-python/ttystatus/ttystatus-0.35.ebuild +++ b/dev-python/ttystatus/ttystatus-0.35.ebuild @@ -15,3 +15,7 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" + +python_test() { + "${EPYTHON}" -m unittest discover -v -p '*_tests.py' || die +}