From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A446D1384B4 for ; Sat, 28 Nov 2015 17:33:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBC5221C043; Sat, 28 Nov 2015 17:33:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6182221C03B for ; Sat, 28 Nov 2015 17:33:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 80C8F340871 for ; Sat, 28 Nov 2015 17:33:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4BE87F5D for ; Sat, 28 Nov 2015 17:33:19 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1448727397.25434cdbe34473f0827ca187024e7548668afda6.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipython/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ipython/ipython-3.2.1-r1.ebuild dev-python/ipython/ipython-4.0.1.ebuild X-VCS-Directories: dev-python/ipython/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 25434cdbe34473f0827ca187024e7548668afda6 X-VCS-Branch: master Date: Sat, 28 Nov 2015 17:33:19 +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: 41f9f3aa-8e1d-4d68-84df-7f7ba0d99bb8 X-Archives-Hash: 355510d5e8377e001aae04c06406ec8c commit: 25434cdbe34473f0827ca187024e7548668afda6 Author: Marius Brehler linux sungazer de> AuthorDate: Sat Nov 28 16:16:37 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Nov 28 16:16:37 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25434cdb dev-python/ipython: Add missing dies, reduce indent Package-Manager: portage-2.2.20.1 dev-python/ipython/ipython-3.2.1-r1.ebuild | 6 +++--- dev-python/ipython/ipython-4.0.1.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-python/ipython/ipython-3.2.1-r1.ebuild b/dev-python/ipython/ipython-3.2.1-r1.ebuild index f482b55..7af0634 100644 --- a/dev-python/ipython/ipython-3.2.1-r1.ebuild +++ b/dev-python/ipython/ipython-3.2.1-r1.ebuild @@ -114,12 +114,12 @@ python_test() { # Failure of some modules only in python3.4 local fail run_tests() { - pushd ${TEST_DIR} > /dev/null + pushd ${TEST_DIR} > /dev/null || die "${PYTHON}" -m IPython.testing.iptestcontroller --all || fail=1 - popd > /dev/null + popd > /dev/null || die } VIRTUALX_COMMAND=run_tests virtualmake - [[ ${fail} ]] && die "Tests fail with ${EPYTHON}" + [[ ${fail} ]] && die "Tests fail with ${EPYTHON}" } python_install() { diff --git a/dev-python/ipython/ipython-4.0.1.ebuild b/dev-python/ipython/ipython-4.0.1.ebuild index b15af20..bca38ad 100644 --- a/dev-python/ipython/ipython-4.0.1.ebuild +++ b/dev-python/ipython/ipython-4.0.1.ebuild @@ -96,12 +96,12 @@ python_test() { # Failure of some modules only in python3.4 local fail run_tests() { - pushd ${TEST_DIR} > /dev/null + pushd ${TEST_DIR} > /dev/null || die "${PYTHON}" -m IPython.testing.iptestcontroller --all || fail=1 - popd > /dev/null + popd > /dev/null || die } VIRTUALX_COMMAND=run_tests virtualmake - [[ ${fail} ]] && die "Tests fail with ${EPYTHON}" + [[ ${fail} ]] && die "Tests fail with ${EPYTHON}" } python_install() {