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 45B41138336 for ; Sat, 21 Jul 2018 10:14:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06C3EE0871; Sat, 21 Jul 2018 10:14:41 +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 D4D73E0871 for ; Sat, 21 Jul 2018 10:14:40 +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 3534C335D0D for ; Sat, 21 Jul 2018 10:14:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82F5437E for ; Sat, 21 Jul 2018 10:14:37 +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: <1532168071.737f37f8bcdae73bc886bb839c2d3dbe84047950.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-mock/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-mock/pytest-mock-1.6.3.ebuild X-VCS-Directories: dev-python/pytest-mock/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 737f37f8bcdae73bc886bb839c2d3dbe84047950 X-VCS-Branch: master Date: Sat, 21 Jul 2018 10:14:37 +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: f9b98a9b-ff41-4271-9bbc-3084979fa05d X-Archives-Hash: c72a55a677b43096e5088db18175120f commit: 737f37f8bcdae73bc886bb839c2d3dbe84047950 Author: Michał Górny gentoo org> AuthorDate: Sat Jul 21 10:00:20 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jul 21 10:14:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=737f37f8 dev-python/pytest-mock: Run tests verbosely dev-python/pytest-mock/pytest-mock-1.6.3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/pytest-mock/pytest-mock-1.6.3.ebuild b/dev-python/pytest-mock/pytest-mock-1.6.3.ebuild index 958c9a4a9d0..e88ebaa58a8 100644 --- a/dev-python/pytest-mock/pytest-mock-1.6.3.ebuild +++ b/dev-python/pytest-mock/pytest-mock-1.6.3.ebuild @@ -30,6 +30,6 @@ src_prepare() { } python_test() { - PYTHONPATH=${PWD}${PYTHONPATH:+:}${PYTHONPATH} \ - py.test test_pytest_mock.py || die + local -x PYTHONPATH=${PWD}${PYTHONPATH:+:}${PYTHONPATH} + py.test -vv test_pytest_mock.py || die "Tests fail with ${EPYTHON}" }