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 5F0A5138334 for ; Sun, 24 Jun 2018 18:29:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D78B8E0953; Sun, 24 Jun 2018 18:28:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 AA162E0953 for ; Sun, 24 Jun 2018 18:28:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D7CB2335CA7 for ; Sun, 24 Jun 2018 18:28:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1CB6B2A1 for ; Sun, 24 Jun 2018 18:28:42 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1529864897.651e80df6084a483e192e1fed27a528457d28818.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/more-itertools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/more-itertools/more-itertools-4.2.0.ebuild X-VCS-Directories: dev-python/more-itertools/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 651e80df6084a483e192e1fed27a528457d28818 X-VCS-Branch: master Date: Sun, 24 Jun 2018 18:28:42 +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: 73d1f26f-3221-4218-ba5d-6d19da128066 X-Archives-Hash: 0e7708ee4f45215a6bddd48b417db842 commit: 651e80df6084a483e192e1fed27a528457d28818 Author: Louis Sautier gentoo org> AuthorDate: Sun Jun 24 18:28:17 2018 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sun Jun 24 18:28:17 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=651e80df dev-python/more-itertools: tests: don't load docs/conf.py docs/conf.py imports sphinx_rtd_theme which isn't guaranteed to be installed. Bug: https://bugs.gentoo.org/659002 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/more-itertools/more-itertools-4.2.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/more-itertools/more-itertools-4.2.0.ebuild b/dev-python/more-itertools/more-itertools-4.2.0.ebuild index 4e8145b0527..cb5cf84dd81 100644 --- a/dev-python/more-itertools/more-itertools-4.2.0.ebuild +++ b/dev-python/more-itertools/more-itertools-4.2.0.ebuild @@ -36,5 +36,6 @@ python_compile_all() { } python_test() { - py.test --doctest-modules || die "tests fail with ${EPYTHON}" + py.test --doctest-modules more_itertools \ + || die "tests fail with ${EPYTHON}" }