14
0
Files
python-PyGithub/PyGithub-drop-network-tests.patch
Sascha Peilicke 2ca0b0085c - Update to version 1.21.0:
+ No changelog, but https://github.com/jacquev6/PyGithub/issues?milestone=33&state=closed
- Add PyGithub-drop-network-tests.patch: Drop tests that need network access
  during build

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyGithub?expand=0&rev=8
2013-12-04 09:49:01 +00:00

47 lines
2.6 KiB
Diff

diff -ruN a/github/tests/AllTests.py b/github/tests/AllTests.py
--- a/github/tests/AllTests.py 2013-11-17 22:45:12.000000000 +0100
+++ b/github/tests/AllTests.py 2013-12-04 10:43:20.695062438 +0100
@@ -83,6 +83,5 @@
from Issue134 import *
from Issue139 import *
from Issue140 import *
-from Issue142 import *
from Issue158 import *
from Issue174 import *
diff -ruN a/github/tests/Issue142.py b/github/tests/Issue142.py
--- a/github/tests/Issue142.py 2013-11-08 03:07:08.000000000 +0100
+++ b/github/tests/Issue142.py 1970-01-01 01:00:00.000000000 +0100
@@ -1,32 +0,0 @@
-# -*- coding: utf-8 -*-
-
-############################ Copyrights and license ############################
-# #
-# Copyright 2013 Vincent Jacques <vincent@vincent-jacques.net> #
-# #
-# This file is part of PyGithub. http://jacquev6.github.com/PyGithub/ #
-# #
-# PyGithub is free software: you can redistribute it and/or modify it under #
-# the terms of the GNU Lesser General Public License as published by the Free #
-# Software Foundation, either version 3 of the License, or (at your option) #
-# any later version. #
-# #
-# PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY #
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS #
-# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more #
-# details. #
-# #
-# You should have received a copy of the GNU Lesser General Public License #
-# along with PyGithub. If not, see <http://www.gnu.org/licenses/>. #
-# #
-################################################################################
-
-import unittest
-import github
-
-
-class Issue142(unittest.TestCase): # https://github.com/jacquev6/PyGithub/issues/142
- def testDecodeJson(self):
- # This test has to hit GitHub for real, because the record-replay framework looses types
- # and python3 does not behave like python2 for strings and bytes
- self.assertEqual(github.Github().get_rate_limit().rate.limit, 60)