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 11B45138334 for ; Wed, 11 Jul 2018 22:11:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F7D8E0884; Wed, 11 Jul 2018 22:11:25 +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 E997EE0884 for ; Wed, 11 Jul 2018 22:11:24 +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 C1951335CC8 for ; Wed, 11 Jul 2018 22:11:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6FEA4370 for ; Wed, 11 Jul 2018 22:11:22 +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: <1531347079.65d73a38629d8a02b967d230d5bbf9a4ca6a950d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest/pytest-3.4.2.ebuild X-VCS-Directories: dev-python/pytest/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 65d73a38629d8a02b967d230d5bbf9a4ca6a950d X-VCS-Branch: master Date: Wed, 11 Jul 2018 22:11:22 +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: 42befcfe-df22-4261-b7f5-ce5292fd2a1b X-Archives-Hash: c3ab9ed2174a05feae7f8978838be766 commit: 65d73a38629d8a02b967d230d5bbf9a4ca6a950d Author: Michał Górny gentoo org> AuthorDate: Wed Jul 11 17:33:35 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jul 11 22:11:19 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65d73a38 dev-python/pytest: Make tests verbose dev-python/pytest/pytest-3.4.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/pytest/pytest-3.4.2.ebuild b/dev-python/pytest/pytest-3.4.2.ebuild index 335e6ee5647..c543591cc90 100644 --- a/dev-python/pytest/pytest-3.4.2.ebuild +++ b/dev-python/pytest/pytest-3.4.2.ebuild @@ -66,11 +66,11 @@ python_prepare_all() { python_test() { # test_nose.py not written to suit py3.2 in pypy3 if [[ "${EPYTHON}" == pypy3 ]]; then - "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX \ + "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX -vv \ --ignore=testing/BUILD_nose.py \ || die "tests failed with ${EPYTHON}" else - "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX testing || die "tests failed with ${EPYTHON}" + "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX -vv testing || die "tests failed with ${EPYTHON}" fi }