Răsfoiți Sursa

Mark dulwich.tests.compat.test_client.DulwichTCPClientTest as expectedFailure on windows.

Gary van der Merwe 10 ani în urmă
părinte
comite
06fc0df176
1 a modificat fișierele cu 6 adăugiri și 0 ștergeri
  1. 6 0
      dulwich/tests/compat/test_client.py

+ 6 - 0
dulwich/tests/compat/test_client.py

@@ -60,6 +60,7 @@ from dulwich import (
 from dulwich.tests import (
     get_safe_env,
     SkipTest,
+    expectedFailure,
     )
 from dulwich.tests.utils import (
     skipIfPY3,
@@ -305,6 +306,11 @@ class DulwichTCPClientTest(CompatTestCase, DulwichClientTestBase):
     def _build_path(self, path):
         return path.encode(sys.getfilesystemencoding())
 
+    if sys.platform == 'win32':
+        @expectedFailure
+        def test_fetch_pack_no_side_band_64k(self):
+            DulwichClientTestBase.test_fetch_pack_no_side_band_64k(self)
+
 
 class TestSSHVendor(object):
     @staticmethod