From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-994254-garchives=archives.gentoo.org@lists.gentoo.org> 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 3793B138206 for <garchives@archives.gentoo.org>; Mon, 1 Jan 2018 10:08:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CDEEDE084E; Mon, 1 Jan 2018 10:08:54 +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 A74C0E084E for <gentoo-commits@lists.gentoo.org>; Mon, 1 Jan 2018 10:08:54 +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 2296D335C2B for <gentoo-commits@lists.gentoo.org>; Mon, 1 Jan 2018 10:08:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C7A7195 for <gentoo-commits@lists.gentoo.org>; Mon, 1 Jan 2018 10:08:51 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> 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" <mgorny@gentoo.org> Message-ID: <1514801321.fa1773b3438092fc249607a599b2ef9f10ed9be2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-websupport/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild X-VCS-Directories: dev-python/sphinxcontrib-websupport/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fa1773b3438092fc249607a599b2ef9f10ed9be2 X-VCS-Branch: master Date: Mon, 1 Jan 2018 10:08:51 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1c68b0b1-3ffc-4135-b698-8c15244167be X-Archives-Hash: 8ebf9f367d1868374cf2a1eee0834a1c commit: fa1773b3438092fc249607a599b2ef9f10ed9be2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Mon Jan 1 09:43:40 2018 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Mon Jan 1 10:08:41 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa1773b3 dev-python/sphinxcontrib-websupport: Make tests fatal .../sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild index 77893f37777..acee6d134de 100644 --- a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild +++ b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild @@ -38,6 +38,6 @@ python_install_all() { find "${ED}" -name '*.pth' -delete || die } -python_test(){ - ${EPYTHON} -m pytest tests/ +python_test() { + "${EPYTHON}" -m pytest tests/ || die "Tests fail with ${EPYTHON}" }