diff options
Diffstat (limited to 'test/test_docs.py')
-rw-r--r-- | test/test_docs.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_docs.py b/test/test_docs.py index bea34a0b..75fd2ba5 100644 --- a/test/test_docs.py +++ b/test/test_docs.py @@ -5,6 +5,7 @@ # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php import os +import sys from test.lib import TestBase from test.lib.helper import with_rw_directory @@ -475,6 +476,11 @@ class Tutorials(TestBase): repo.git.clear_cache() + @pytest.mark.xfail( + sys.platform == "cygwin", + reason="Cygwin GitPython can't find SHA for submodule", + raises=ValueError + ) def test_submodules(self): # [1-test_submodules] repo = self.rorepo |