diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-27 00:09:20 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-28 03:35:37 +0200 |
commit | c572a8d95d8fa184eb58b15b7ff96d01ef1f9ec3 (patch) | |
tree | 2eccf43a7c2e162d2553d7255b8ec5b8983d4758 /git/test/test_remote.py | |
parent | 6a3c95b408162c78b9a4230bb4f7274a94d0add4 (diff) | |
download | gitpython-c572a8d95d8fa184eb58b15b7ff96d01ef1f9ec3.tar.gz |
Win, #519: FIX undead Git-daemon on Windows
+ On MINGW-git, daemon exists but if invoked as 'git daemon', DAEMON
CANNOT DIE!
+ So, launch `git-daemon` on Apveyor, but
- remote TCs fail due to paths problems.
+ Updated README instructions on Windows.
+ Restore disabled remote TCs on Windows.
+ Disable failures on daemon-tests only the last moment
(raise SkipTest) so when ready, it will also pass.
Diffstat (limited to 'git/test/test_remote.py')
-rw-r--r-- | git/test/test_remote.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/git/test/test_remote.py b/git/test/test_remote.py index 0060b5a6..2716d5b9 100644 --- a/git/test/test_remote.py +++ b/git/test/test_remote.py @@ -26,8 +26,7 @@ from git import ( GitCommandError ) from git.util import IterableList -from git.compat import string_types, is_win -from unittest import skipIf +from git.compat import string_types import tempfile import shutil import os @@ -100,7 +99,6 @@ class TestRemoteProgress(RemoteProgress): assert self._num_progress_messages -@skipIf(is_win(), "git-daemon proc stuck on Appveyor!") class TestRemote(TestBase): def tearDown(self): |