diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-16 22:02:51 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-16 22:06:10 +0200 |
commit | 5962373da1444d841852970205bff77d5ca9377f (patch) | |
tree | ad6d5d57fd700ebb7beb4ab3e3686d8791ccc093 /git/test/test_repo.py | |
parent | ec731f448d304dfe1f9269cc94de405aeb3a0665 (diff) | |
download | gitpython-5962373da1444d841852970205bff77d5ca9377f.tar.gz |
cygwin, appveyor, #533: Enable actual failures, hide certain 2+2 cases
Diffstat (limited to 'git/test/test_repo.py')
-rw-r--r-- | git/test/test_repo.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/git/test/test_repo.py b/git/test/test_repo.py index 95bc8a96..8b644f7f 100644 --- a/git/test/test_repo.py +++ b/git/test/test_repo.py @@ -411,6 +411,14 @@ class TestRepo(TestBase): self.assertEqual(len(res), 1) self.assertEqual(len(res[0][1]), 83, "Unexpected amount of parsed blame lines") + @skipIf(HIDE_WINDOWS_KNOWN_ERRORS and Git.is_cygwin(), + """FIXME: File "C:\projects\gitpython\git\cmd.py", line 671, in execute + raise GitCommandError(command, status, stderr_value, stdout_value) + GitCommandError: Cmd('git') failed due to: exit code(128) + cmdline: git add 1__��ava verb��ten 1_test _myfile 1_test_other_file + 1_��ava-----verb��ten + stderr: 'fatal: pathspec '"1__çava verböten"' did not match any files' + """) @with_rw_repo('HEAD', bare=False) def test_untracked_files(self, rwrepo): for run, (repo_add, is_invoking_git) in enumerate(( |