Procházet zdrojové kódy

Skip test_commit_no_encode_decode on Mac OS X.

Jelmer Vernooij před 4 roky
rodič
revize
98efd2ebf4
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      dulwich/tests/test_repository.py

+ 1 - 1
dulwich/tests/test_repository.py

@@ -1096,7 +1096,7 @@ class BuildRepoRootTests(TestCase):
         r.stage(['c'])
         self.assertEqual([b'a'], list(r.open_index()))
 
-    @skipIf(sys.platform == 'win32',
+    @skipIf(sys.platform in ('win32', 'darwin'),
             'tries to implicitly decode as utf8')
     def test_commit_no_encode_decode(self):
         r = self._repo