diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-22 14:48:40 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-22 14:52:19 +0200 |
commit | 9db2ff10e59b2657220d1804df19fcf946539385 (patch) | |
tree | 531a06777a7377198442df5383979e7bc5aa18f8 /git/test/test_repo.py | |
parent | 3910abfc2ab12a5d5a210b71c43b7a2318311323 (diff) | |
download | gitpython-9db2ff10e59b2657220d1804df19fcf946539385.tar.gz |
fix(win_mmap): unmark hidden win_errors due to smmap unicode foes
Now 2 more TCs pass in Windows:
+ TestRepo.test_file_handle_leaks()
+ TestObjDbPerformance.test_random_access()
See https://github.com/gitpython-developers/smmap/pull/30
Diffstat (limited to 'git/test/test_repo.py')
-rw-r--r-- | git/test/test_repo.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/git/test/test_repo.py b/git/test/test_repo.py index 8b644f7f..374a26ee 100644 --- a/git/test/test_repo.py +++ b/git/test/test_repo.py @@ -808,8 +808,6 @@ class TestRepo(TestBase): git_file_repo = Repo(rwrepo.working_tree_dir) self.assertEqual(osp.abspath(git_file_repo.git_dir), real_path_abs) - @skipIf(HIDE_WINDOWS_KNOWN_ERRORS and PY3, - "FIXME: smmp fails with: TypeError: Can't convert 'bytes' object to str implicitly") def test_file_handle_leaks(self): def last_commit(repo, rev, path): commit = next(repo.iter_commits(rev, path, max_count=1)) |