summaryrefslogtreecommitdiff
path: root/git/test/test_remote.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/test/test_remote.py')
-rw-r--r--git/test/test_remote.py20
1 files changed, 18 insertions, 2 deletions
diff --git a/git/test/test_remote.py b/git/test/test_remote.py
index d49a9061..a8d5179a 100644
--- a/git/test/test_remote.py
+++ b/git/test/test_remote.py
@@ -4,8 +4,24 @@
# 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 *
-from git import *
+from git.test.lib import (
+ TestBase,
+ with_rw_repo,
+ with_rw_and_rw_remote_repo
+)
+from git import (
+ RemoteProgress,
+ FetchInfo,
+ Reference,
+ SymbolicReference,
+ Head,
+ Commit,
+ PushInfo,
+ RemoteReference,
+ TagReference,
+ Remote,
+ GitCommandError
+)
from git.util import IterableList
import tempfile
import shutil