瀏覽代碼

Fix compat test on pypy.

Jelmer Vernooij 7 年之前
父節點
當前提交
5883fccf9e
共有 1 個文件被更改,包括 13 次插入0 次删除
  1. 13 0
      debian/patches/01_no_urllib3_pypy

+ 13 - 0
debian/patches/01_no_urllib3_pypy

@@ -123,3 +123,16 @@ index eb1ccbea..881fabf5 100644
          manager = default_urllib3_manager(config=ConfigDict())
          self.assert_verify_ssl(manager)
  
+diff --git a/dulwich/tests/compat/test_client.py b/dulwich/tests/compat/test_client.py
+index d60be1a3..faafdbfe 100644
+--- a/dulwich/tests/compat/test_client.py
++++ b/dulwich/tests/compat/test_client.py
+@@ -519,6 +519,8 @@ class DulwichHttpClientTest(CompatTestCase, DulwichClientTestBase):
+     min_git_version = (1, 7, 0, 2)
+ 
+     def setUp(self):
++        if '__pypy__' in sys.modules:
++            self.skipTest('urllib3 not available for pypy in debian')
+         CompatTestCase.setUp(self)
+         DulwichClientTestBase.setUp(self)
+         self._httpd = HTTPGitServer(("localhost", 0), self.gitroot)