summaryrefslogtreecommitdiff
path: root/tests/test_vcs_git.py
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2012-09-01 16:19:19 +0200
committerJannis Leidel <jannis@leidel.info>2012-09-01 16:19:19 +0200
commit235e1dea02abd3a89ab53ea8035fd4ee8a37887b (patch)
tree5e7b2c5a853aefed870863bed9da6722100e2420 /tests/test_vcs_git.py
parent6083597ebebd05d28b57d53c6077bfa7c3b168f8 (diff)
parentb183a327412e83ac24a9c9d28a6bedd94bb69d7b (diff)
downloadpip-threaded-page-getting.tar.gz
Merge branch 'develop' into threaded-page-gettingthreaded-page-getting
Diffstat (limited to 'tests/test_vcs_git.py')
-rw-r--r--tests/test_vcs_git.py5
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)