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 DA6E9138334 for ; Mon, 16 Jul 2018 11:48:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64D55E07D7; Mon, 16 Jul 2018 11:48:06 +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 09479E07D7 for ; Mon, 16 Jul 2018 11:48:05 +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 0725E335C42 for ; Mon, 16 Jul 2018 11:48:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E77832CC for ; Mon, 16 Jul 2018 11:48:01 +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: <1531741677.ee8e1c46890d2d109fc583a22831280faf3ab99d.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.1.0.ebuild X-VCS-Directories: dev-python/sphinxcontrib-websupport/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ee8e1c46890d2d109fc583a22831280faf3ab99d X-VCS-Branch: master Date: Mon, 16 Jul 2018 11:48:01 +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: 2be710d0-9db5-4af1-b1a9-13d0947c03f8 X-Archives-Hash: 9bf23b871bb2f34b1fcc4bfe86aa6596 commit: ee8e1c46890d2d109fc583a22831280faf3ab99d Author: Michał Górny gentoo org> AuthorDate: Mon Jul 16 11:47:16 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jul 16 11:47:57 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee8e1c46 dev-python/sphinxcontrib-websupport: Fix running tests .../sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild index 36f4308b2e8..9d9db414ce3 100644 --- a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild +++ b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild @@ -37,6 +37,11 @@ python_install_all() { find "${ED}" -name '*.pth' -delete || die } +src_test() { + cd tests || die + distutils-r1_src_test +} + python_test() { - pytest -vv tests || die "Tests fail with ${EPYTHON}" + pytest -vv || die "Tests fail with ${EPYTHON}" }