diff options
Diffstat (limited to 'tests/test_vcs_git.py')
-rw-r--r-- | tests/test_vcs_git.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_vcs_git.py b/tests/test_vcs_git.py index 206e80512..b27c12d8b 100644 --- a/tests/test_vcs_git.py +++ b/tests/test_vcs_git.py @@ -1,4 +1,6 @@ +import sys from mock import patch +from nose import SkipTest from pip.vcs.git import Git from tests.test_pip import (reset_env, run_pip, _create_test_package,) @@ -87,6 +89,9 @@ def test_check_submodule_addition(): Submodules are pulled in on install and updated on upgrade. """ + # TODO(pnasrat) fix all helpers to do right things with paths on windows. + if sys.platform == 'win32': + raise SkipTest() env = reset_env() module_path, submodule_path = _create_test_package_with_submodule(env) |