소스 검색

Skip test broken on Python3.6 w/ Windows.

Jelmer Vernooij 8 년 전
부모
커밋
deca114fc2
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      dulwich/tests/test_repository.py

+ 2 - 0
dulwich/tests/test_repository.py

@@ -863,6 +863,8 @@ class BuildRepoRootTests(TestCase):
         r.stage(['a'])
         r.stage(['a'])  # double-stage a deleted path
 
+    @skipIf(sys.platform == 'win32' and sys.version_info[:2] >= (3, 6),
+            'tries to implicitly decode as utf8')
     def test_commit_no_encode_decode(self):
         r = self._repo
         repo_path_bytes = r.path.encode(sys.getfilesystemencoding())