|
13 | 13 | import pickle
|
14 | 14 | import sys
|
15 | 15 | import tempfile
|
16 |
| -from unittest import mock, skipIf, SkipTest, skip |
| 16 | +from unittest import mock, SkipTest, skip |
17 | 17 |
|
18 | 18 | import pytest
|
19 | 19 |
|
|
42 | 42 | )
|
43 | 43 | from git.repo.fun import touch
|
44 | 44 | from test.lib import TestBase, with_rw_repo, fixture
|
45 |
| -from git.util import HIDE_WINDOWS_KNOWN_ERRORS, cygpath |
| 45 | +from git.util import cygpath |
46 | 46 | from test.lib import with_rw_directory
|
47 | 47 | from git.util import join_path_native, rmtree, rmfile, bin_to_hex
|
48 | 48 |
|
@@ -764,16 +764,6 @@ def test_blame_accepts_rev_opts(self, git):
|
764 | 764 | self.rorepo.blame("HEAD", "README.md", rev_opts=["-M", "-C", "-C"])
|
765 | 765 | git.assert_called_once_with(*expected_args, **boilerplate_kwargs)
|
766 | 766 |
|
767 |
| - @skipIf( |
768 |
| - HIDE_WINDOWS_KNOWN_ERRORS and Git.is_cygwin(), |
769 |
| - """FIXME: File "C:\\projects\\gitpython\\git\\cmd.py", line 671, in execute |
770 |
| - raise GitCommandError(command, status, stderr_value, stdout_value) |
771 |
| - GitCommandError: Cmd('git') failed due to: exit code(128) |
772 |
| - cmdline: git add 1__��ava verb��ten 1_test _myfile 1_test_other_file |
773 |
| - 1_��ava-----verb��ten |
774 |
| - stderr: 'fatal: pathspec '"1__çava verböten"' did not match any files' |
775 |
| - """, |
776 |
| - ) |
777 | 767 | @with_rw_repo("HEAD", bare=False)
|
778 | 768 | def test_untracked_files(self, rwrepo):
|
779 | 769 | for run, repo_add in enumerate((rwrepo.index.add, rwrepo.git.add)):
|
|
0 commit comments