diff options
Diffstat (limited to 'git/test/test_remote.py')
-rw-r--r-- | git/test/test_remote.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/git/test/test_remote.py b/git/test/test_remote.py index 301d1833..a7387816 100644 --- a/git/test/test_remote.py +++ b/git/test/test_remote.py @@ -4,9 +4,16 @@ # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php -from git.test.lib import TestBase -from git import * +from git.test.lib import ( + TestBase, + with_rw_and_rw_remote_repo, + with_rw_repo, + ) from git.util import IterableList +from git.db.cmd.base import RemoteProgress +from git.remote import * +from git.exc import GitCommandError + import tempfile import shutil import os |