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 74A23138334 for ; Wed, 18 Jul 2018 12:54:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25C2AE08DD; Wed, 18 Jul 2018 12:54:44 +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 E35F7E08DD for ; Wed, 18 Jul 2018 12:54:43 +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 915A9335CA9 for ; Wed, 18 Jul 2018 12:54:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B228379 for ; Wed, 18 Jul 2018 12:54:40 +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: <1531918475.165f74d1e6762968cbedc0385cedb6ab75591f57.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/PyGithub/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/PyGithub/PyGithub-1.40_alpha4.ebuild X-VCS-Directories: dev-python/PyGithub/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 165f74d1e6762968cbedc0385cedb6ab75591f57 X-VCS-Branch: master Date: Wed, 18 Jul 2018 12:54:40 +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: af53ebbf-4124-4e41-9873-600965b73944 X-Archives-Hash: 53de5a4942c7f9b30501034ff388b9fd commit: 165f74d1e6762968cbedc0385cedb6ab75591f57 Author: Michał Górny gentoo org> AuthorDate: Wed Jul 18 12:52:17 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jul 18 12:54:35 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=165f74d1 dev-python/PyGithub: Disable a test requiring network access dev-python/PyGithub/PyGithub-1.40_alpha4.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-python/PyGithub/PyGithub-1.40_alpha4.ebuild b/dev-python/PyGithub/PyGithub-1.40_alpha4.ebuild index e44864c83d7..eadab26e792 100644 --- a/dev-python/PyGithub/PyGithub-1.40_alpha4.ebuild +++ b/dev-python/PyGithub/PyGithub-1.40_alpha4.ebuild @@ -25,6 +25,13 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${MY_P} +python_prepare_all() { + # tests requiring network access + sed -i -e 's:testDecodeJson:_&:' github/tests/Issue142.py || die + + distutils-r1_python_prepare_all +} + python_test() { esetup.py test }