We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0eda0a5 commit 7f3689dCopy full SHA for 7f3689d
test/test_submodule.py
@@ -3,8 +3,11 @@
3
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
4
import os
5
import shutil
6
+import sys
7
from unittest import skipIf
8
9
+import pytest
10
+
11
import git
12
from git.cmd import Git
13
from git.compat import is_win
@@ -433,6 +436,11 @@ def _do_base_tests(self, rwrepo):
433
436
def test_base_rw(self, rwrepo):
434
437
self._do_base_tests(rwrepo)
435
438
439
+ @pytest.mark.xfail(
440
+ sys.platform == "cygwin",
441
+ reason="Cygwin GitPython can't find submodule SHA",
442
+ raises=ValueError
443
+ )
444
@with_rw_repo(k_subm_current, bare=True)
445
def test_base_bare(self, rwrepo):
446
0 commit comments