Browse Source

Mark test_send_pack_from_shallow_clone as known failing. See #705 anmd #757 for details.

Jelmer Vernooij 5 years ago
parent
commit
c88a7c5952
1 changed files with 3 additions and 0 deletions
  1. 3 0
      dulwich/tests/compat/test_client.py

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

@@ -30,6 +30,7 @@ import sys
 import tarfile
 import tempfile
 import threading
+import unittest
 
 try:
     from urlparse import unquote
@@ -117,6 +118,8 @@ class DulwichClientTestBase(object):
         # nothing to send, but shouldn't raise either.
         self._do_send_pack()
 
+    # Pushing from a shallow clone currently fails. See #705
+    @unittest.expectedFailure
     def test_send_pack_from_shallow_clone(self):
         c = self._client()
         server_new_path = os.path.join(self.gitroot, 'server_new.export')