1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Skip networking doing unit test
Author: Thomas Goirand <zigo@debian.org>
Forwarded: not-needed
Last-Update: 2016-03-22
Index: python-oauth2client/tests/test_tools.py
===================================================================
--- python-oauth2client.orig/tests/test_tools.py
+++ python-oauth2client/tests/test_tools.py
@@ -28,6 +28,7 @@ from oauth2client import tools
class TestClientRedirectServer(unittest.TestCase):
"""Test the ClientRedirectServer and ClientRedirectHandler classes."""
+ @unittest.skip("Skipped in Debian: doing network access")
def test_ClientRedirectServer(self):
# create a ClientRedirectServer and run it in a thread to listen
# for a mock GET request with the access token
|