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 2A41A1382C5 for ; Fri, 7 May 2021 22:22:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE240E0863; Fri, 7 May 2021 22:22:47 +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 5A561E0863 for ; Fri, 7 May 2021 22:22:44 +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 586E6340E56 for ; Fri, 7 May 2021 22:22:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41CC875F for ; Fri, 7 May 2021 22:22:39 +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: <1620426147.286f33b591b4721c3f1672256e0563e3d253ecad.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/google-api-python-client/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/google-api-python-client/files/google-api-python-client-1.8.3-tests.patch X-VCS-Directories: dev-python/google-api-python-client/files/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 286f33b591b4721c3f1672256e0563e3d253ecad X-VCS-Branch: master Date: Fri, 7 May 2021 22:22:39 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 37b51c13-e5d7-4e97-adc8-c9c2bd2dd9bd X-Archives-Hash: 328e65a581136a7b6740b2cfba22064d commit: 286f33b591b4721c3f1672256e0563e3d253ecad Author: Michael Mair-Keimberger levelnine at> AuthorDate: Fri May 7 18:11:48 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri May 7 22:22:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=286f33b5 dev-python/google-api-python-client: remove unused patch(es) Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Michał Górny gentoo.org> .../google-api-python-client-1.8.3-tests.patch | 28 ---------------------- 1 file changed, 28 deletions(-) diff --git a/dev-python/google-api-python-client/files/google-api-python-client-1.8.3-tests.patch b/dev-python/google-api-python-client/files/google-api-python-client-1.8.3-tests.patch deleted file mode 100644 index ad875e72831..00000000000 --- a/dev-python/google-api-python-client/files/google-api-python-client-1.8.3-tests.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff --git a/tests/test_discovery.py b/tests/test_discovery.py -index 6400f214..c999fd4f 100644 ---- a/tests/test_discovery.py -+++ b/tests/test_discovery.py -@@ -40,6 +40,7 @@ import sys - import unittest2 as unittest - - import mock -+import pytest - - import google.auth.credentials - import google_auth_httplib2 -@@ -515,6 +516,7 @@ class DiscoveryFromDocument(unittest.TestCase): - # application default credentials were used. - self.assertNotIsInstance(plus._http, google_auth_httplib2.AuthorizedHttp) - -+ @pytest.mark.skip("Needs network access and credentials") - def test_api_endpoint_override_from_client_options(self): - discovery = open(datafile("plus.json")).read() - api_endpoint = "https://foo.googleapis.com/" -@@ -525,6 +527,7 @@ class DiscoveryFromDocument(unittest.TestCase): - - self.assertEqual(plus._baseUrl, api_endpoint) - -+ @pytest.mark.skip("Needs network access and credentials") - def test_api_endpoint_override_from_client_options_dict(self): - discovery = open(datafile("plus.json")).read() - api_endpoint = "https://foo.googleapis.com/"