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 DD63A139694 for ; Mon, 22 May 2017 14:13:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 487B621C08D; Mon, 22 May 2017 14:13:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2658E21C08D for ; Mon, 22 May 2017 14:13:16 +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 5C3A53416FB for ; Mon, 22 May 2017 14:13:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97FF87468 for ; Mon, 22 May 2017 14:13:12 +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: <1495462382.b6929e78b38ff4806ae4a0dd4b9743d5b473fd53.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rst-linker/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rst-linker/rst-linker-1.9-r1.ebuild X-VCS-Directories: dev-python/rst-linker/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b6929e78b38ff4806ae4a0dd4b9743d5b473fd53 X-VCS-Branch: master Date: Mon, 22 May 2017 14:13:12 +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: bbb5cdec-4622-4e45-9ab8-a7eac741a799 X-Archives-Hash: 0618dc2a47470b692b4d83fcf201ab86 commit: b6929e78b38ff4806ae4a0dd4b9743d5b473fd53 Author: Michał Górny gentoo org> AuthorDate: Mon May 22 12:42:57 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 22 14:13:02 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6929e78 dev-python/rst-linker: Remove unnecessary pytest-runner dep dev-python/rst-linker/rst-linker-1.9-r1.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dev-python/rst-linker/rst-linker-1.9-r1.ebuild b/dev-python/rst-linker/rst-linker-1.9-r1.ebuild index 021399caa7b..fcb4b4a54db 100644 --- a/dev-python/rst-linker/rst-linker-1.9-r1.ebuild +++ b/dev-python/rst-linker/rst-linker-1.9-r1.ebuild @@ -29,7 +29,6 @@ DEPEND=" ${RDEPEND} dev-python/path-py[${PYTHON_USEDEP}] >=dev-python/pytest-2.8[${PYTHON_USEDEP}] - dev-python/pytest-runner[${PYTHON_USEDEP}] ) " @@ -40,7 +39,7 @@ python_compile_all() { } python_test() { - py.test --ignore=rst || die "tests failed with ${EPYTHON}" + py.test -v --ignore=rst || die "tests failed with ${EPYTHON}" } python_install() {