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 CA5E81382C5 for ; Mon, 14 Dec 2020 13:03:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00BF5E0943; Mon, 14 Dec 2020 13:03:10 +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 D2D32E0943 for ; Mon, 14 Dec 2020 13:03:09 +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 674BD3410E7 for ; Mon, 14 Dec 2020 13:03:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C98A749 for ; Mon, 14 Dec 2020 13:03:06 +0000 (UTC) From: "Andrey Utkin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Utkin" Message-ID: <1607950954.7ebb9f5de8c1784e402047cf49a061e8ce7ce500.andrey_utkin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/slixmpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/slixmpp/slixmpp-1.5.2.ebuild dev-python/slixmpp/slixmpp-9999.ebuild X-VCS-Directories: dev-python/slixmpp/ X-VCS-Committer: andrey_utkin X-VCS-Committer-Name: Andrey Utkin X-VCS-Revision: 7ebb9f5de8c1784e402047cf49a061e8ce7ce500 X-VCS-Branch: master Date: Mon, 14 Dec 2020 13:03:06 +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: 47773bef-c40a-487c-aa5a-14b2e36fbbf9 X-Archives-Hash: ed793b9c3f8bd6c8c77773a65c32d630 commit: 7ebb9f5de8c1784e402047cf49a061e8ce7ce500 Author: Andrey Utkin gentoo org> AuthorDate: Mon Dec 14 12:53:35 2020 +0000 Commit: Andrey Utkin gentoo org> CommitDate: Mon Dec 14 13:02:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ebb9f5d dev-python/slixmpp: run tests the right way Upstream means the tests appropriate for this phase to be invoked via ./run_tests.py . Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Andrey Utkin gentoo.org> dev-python/slixmpp/slixmpp-1.5.2.ebuild | 4 +++- dev-python/slixmpp/slixmpp-9999.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-python/slixmpp/slixmpp-1.5.2.ebuild b/dev-python/slixmpp/slixmpp-1.5.2.ebuild index 64f1fc02263..4bdc2f5616c 100644 --- a/dev-python/slixmpp/slixmpp-1.5.2.ebuild +++ b/dev-python/slixmpp/slixmpp-1.5.2.ebuild @@ -31,4 +31,6 @@ RDEPEND=" ${DEPEND} " -distutils_enable_tests pytest +python_test() { + "${EPYTHON}" ./run_tests.py || die "Tests failed with ${EPYTHON}" +} diff --git a/dev-python/slixmpp/slixmpp-9999.ebuild b/dev-python/slixmpp/slixmpp-9999.ebuild index 64f1fc02263..4bdc2f5616c 100644 --- a/dev-python/slixmpp/slixmpp-9999.ebuild +++ b/dev-python/slixmpp/slixmpp-9999.ebuild @@ -31,4 +31,6 @@ RDEPEND=" ${DEPEND} " -distutils_enable_tests pytest +python_test() { + "${EPYTHON}" ./run_tests.py || die "Tests failed with ${EPYTHON}" +}